[
  {
    "path": ".babelrc",
    "content": "{\n  \"presets\": [\n    [\"@babel/env\", { \"modules\": false }],\n    \"@babel/react\"\n  ],\n  \"plugins\": [\n    \"@babel/proposal-object-rest-spread\"\n  ]\n}\n"
  },
  {
    "path": ".eslintrc",
    "content": "{\n  \"extends\": \"airbnb\",\n  \"rules\": {\n    \"arrow-body-style\": 0,\n    \"react/jsx-filename-extension\": [1, { \"extensions\": [\".js\", \".jsx\"] }]\n  }\n}\n"
  },
  {
    "path": ".gitignore",
    "content": "node_modules\ndist\nbuild\n.DS_Store\n.vscode\npackage-lock.json\n_demo"
  },
  {
    "path": ".npmignore",
    "content": "bin\nsrc\n.babelrc\n"
  },
  {
    "path": ".prettierrc",
    "content": "{\n  \"singleQuote\": true,\n  \"trailingComma\": \"none\",\n  \"bracketSpacing\": true,\n  \"semi\": true,\n  \"arrowParens\": \"avoid\",\n  \"jsxSingleQuote\": false,\n  \"printWidth\": 80,\n  \"tabWidth\": 2,\n  \"useTabs\": false\n}\n"
  },
  {
    "path": "LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2022 Ismael Martínez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "README.md",
    "content": "# React Bootstrap Icons\n\nThe brand new [Bootstrap Icons library](https://icons.getbootstrap.com/) to use as React components.\n\n> Currently v1.13.1, over **2000 icons!**\n\n![bootstrap-icons](https://user-images.githubusercontent.com/39626451/192898250-711e2281-ab03-433a-afeb-4ad542b68a5b.png)\n\n## Installation\n\n```bash\nnpm install react-bootstrap-icons --save\n```\n\nor\n\n```bash\nyarn add react-bootstrap-icons\n```\n\n## Usage\n\n```jsx\nimport { ArrowRight } from 'react-bootstrap-icons';\n\nexport default function App() {\n  return <ArrowRight />;\n}\n```\n\nIcons can be configured with inline props:\n\n```jsx\n<ArrowRight color=\"royalblue\" size={96} />\n```\n\nYou can pass whatever props you want:\n\n```jsx\n<ArrowRight className=\"ml-4\" />\n```\n\nYou can also include the whole icon pack:\n\n```jsx\nimport * as Icon from 'react-bootstrap-icons';\n\nexport default function App() {\n  return <Icon.ArrowRight />;\n}\n```\n\nThe icon names are the `PascalCase` version of the original name. For those icons whose name begins with a number, the `Icon` prefix will be used. Examples: `arrow-right` → `ArrowRight`, `1-circle` → `Icon1Circle`.\n\nYou can also create an `Icon` component and pass it the icon name as a prop:\n\n```jsx\nimport * as icons from 'react-bootstrap-icons';\n\ninterface IconProps extends icons.IconProps {\n  // Cannot use \"name\" as it is a valid SVG attribute\n  // \"iconName\", \"filename\", \"icon\" will do it instead\n  iconName: keyof typeof icons;\n}\n\nexport const Icon = ({ iconName, ...props }: IconProps) => {\n  const BootstrapIcon = icons[iconName];\n  return <BootstrapIcon {...props} />;\n}\n```\n\n```jsx\nimport { Icon } from './Icon';\n\nexport default function App() {\n  return (\n    <Icon\n      iconName=\"Stopwatch\"\n      color=\"royalblue\"\n      size={96}\n      className=\"align-top\"\n    />\n  );\n}\n```\n\n## IconProps\n\n| Name         | Type             | Description                                    |\n| ------------ | ---------------- | ---------------------------------------------- |\n| `color?`     | string           | color of the icon                              |\n| `size?`      | string \\| number | size of the icon (`width` and `height`)        |\n| `title?`     | string           | provides an accessible, short-text description |\n| `className?` | string           | `bi bi-{icon-name}` and add your own classes   |\n\n## Figma Plugin\n\nYou can install it from the Figma app: [Bootstrap Icons Plugin for Figma](https://www.figma.com/community/plugin/868341386266170307/Bootstrap-Icons)\n\n## More options\n\nOther ways to use Boostrap icons: [https://icons.getbootstrap.com/#usage](https://icons.getbootstrap.com/#usage)\n\n## License\n\n- react-bootstrap-icons are open-sourced ([MIT](https://github.com/ismamz/react-bootstrap-icons/blob/master/LICENSE.md))\n- Bootstrap Icons are open-sourced ([MIT](https://github.com/twbs/icons/blob/main/LICENSE)).\n\n## Collaborators\n\n- [@kwnath](https://github.com/kwnath)\n"
  },
  {
    "path": "bin/build.js",
    "content": "const path = require('path');\nconst fs = require('fs');\nconst upperCamelCase = require('uppercamelcase');\nconst format = require('prettier-eslint');\n\nconst iconsDir = path.join(__dirname, '../node_modules/bootstrap-icons/icons');\n\nconst rootDir = path.join(__dirname, '..');\nconst dir = path.join(rootDir, 'src/icons');\n\nif (!fs.existsSync(dir)) {\n  fs.mkdirSync(dir);\n}\n\nconst initialTypeDefinitions = `/// <reference types=\"react\" />\nimport { FC, SVGAttributes } from 'react';\n\nexport interface IconProps extends SVGAttributes<SVGElement> {\n  color?: string;\n  size?: string | number;\n  title?: string;\n  className?: string;\n}\n\nexport type Icon = FC<IconProps>;\n`;\n\nfs.writeFileSync(\n  path.join(rootDir, 'src', 'index.d.ts'),\n  initialTypeDefinitions,\n  'utf-8'\n);\n\nfs.writeFileSync(path.join(rootDir, 'src', 'index.js'), '', 'utf-8');\n\nlet n = 0;\n\nfs.readdirSync(iconsDir).forEach(file => {\n  const svg = fs.readFileSync(`${iconsDir}/${file}`, 'utf8');\n  const svgContent = svg.replace(/<svg[^>]*>|<\\/svg>/g, '');\n  const fileName = file.split('.')[0];\n  let ComponentName = upperCamelCase(fileName);\n  if (ComponentName.match(/^\\d/)) ComponentName = `Icon${ComponentName}`;\n\n  const preComponent = `\n    import React, { forwardRef } from 'react';\n    import PropTypes from 'prop-types';\n\n    const ${ComponentName} = forwardRef(({\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    }, ref) => {\n      return (\n        <svg\n          ref={ref}\n          xmlns=\"http://www.w3.org/2000/svg\"\n          viewBox=\"0 0 16 16\"\n          width={size}\n          height={size}\n          fill={color}\n          className={['bi', \\`bi-${fileName}\\`, className].filter(Boolean).join(' ')}\n          {...rest}\n        >\n          {title ? <title>{title}</title> : null}\n          ${svgContent}\n        </svg>\n      );\n    });\n\n    ${ComponentName}.propTypes = {\n      color: PropTypes.string,\n      size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n      title: PropTypes.string,\n      className: PropTypes.string,\n    };\n\n    export default ${ComponentName};\n  `;\n\n  const component = format({\n    text: preComponent,\n    eslintConfig: {\n      extends: 'airbnb'\n    },\n    prettierOptions: {\n      singleQuote: true,\n      trailingComma: 'none',\n      bracketSpacing: true,\n      semi: true,\n      arrowParens: 'avoid',\n      jsxSingleQuote: false,\n      printWidth: 80,\n      tabWidth: 2,\n      useTabs: false,\n      parser: 'flow'\n    }\n  });\n\n  fs.writeFileSync(\n    path.join(rootDir, 'src/icons', `${fileName}.js`),\n    component,\n    'utf-8'\n  );\n\n  const exportString = `export { default as ${ComponentName} } from './icons/${fileName}';\\r\\n`;\n  fs.appendFileSync(\n    path.join(rootDir, 'src', 'index.js'),\n    exportString,\n    'utf-8'\n  );\n\n  const exportTypeString = `export const ${ComponentName}: Icon;\\n`;\n  fs.appendFileSync(\n    path.join(rootDir, 'src', 'index.d.ts'),\n    exportTypeString,\n    'utf-8'\n  );\n\n  console.log(`${fileName} was created.`);\n  n++;\n});\n\nconsole.log(`\\nSuccess! ${n} icons were created.`);\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"react-bootstrap-icons\",\n  \"version\": \"1.11.6\",\n  \"description\": \"React component for Bootstrap Icons\",\n  \"main\": \"build/index.js\",\n  \"module\": \"dist/index.js\",\n  \"repository\": \"https://github.com/ismamz/react-bootstrap-icons\",\n  \"author\": \"Ismael Martínez\",\n  \"license\": \"MIT\",\n  \"sideEffects\": false,\n  \"typings\": \"dist/index.d.ts\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n    \"compile\": \"rm -rf src/icons && node bin/build.js\",\n    \"build:bundle\": \"rm -rf build && rollup --config rollup.config.js\",\n    \"build:es\": \"rm -rf dist && babel src --out-dir dist --copy-files\",\n    \"build\": \"concurrently \\\"npm:build:*\\\"\",\n    \"prepare\": \"npm run build\"\n  },\n  \"keywords\": [\n    \"react\",\n    \"icons\",\n    \"svg\",\n    \"bootstrap\"\n  ],\n  \"devDependencies\": {\n    \"@babel/cli\": \"^7.4.4\",\n    \"@babel/core\": \"^7.4.5\",\n    \"@babel/plugin-proposal-object-rest-spread\": \"^7.4.4\",\n    \"@babel/preset-env\": \"^7.4.5\",\n    \"@babel/preset-react\": \"^7.0.0\",\n    \"babel-plugin-transform-object-rest-spread\": \"^6.26.0\",\n    \"babel-preset-env\": \"^1.7.0\",\n    \"bootstrap-icons\": \"^1.13.1\",\n    \"concurrently\": \"^7.1.0\",\n    \"eslint\": \"^5.16.0\",\n    \"eslint-config-airbnb\": \"^17.1.1\",\n    \"eslint-plugin-import\": \"^2.18.0\",\n    \"eslint-plugin-jsx-a11y\": \"^6.2.3\",\n    \"eslint-plugin-react\": \"^7.14.2\",\n    \"prettier-eslint\": \"^9.0.0\",\n    \"rollup\": \"^1.16.4\",\n    \"rollup-plugin-babel\": \"^4.3.3\",\n    \"uppercamelcase\": \"^3.0.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \">=16.8.6\"\n  },\n  \"dependencies\": {\n    \"prop-types\": \"^15.7.2\"\n  }\n}\n"
  },
  {
    "path": "rollup.config.js",
    "content": "import babel from 'rollup-plugin-babel';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    file: 'build/index.js',\n    format: 'cjs',\n  },\n  external: ['react', 'prop-types'],\n  plugins: [\n    babel({\n      exclude: 'node_modules/**',\n    }),\n  ],\n};\n"
  },
  {
    "path": "src/icons/0-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon0CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-0-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.951c-1.008 0-1.629 1.09-1.629 2.895v.31c0 1.81.627 2.895 1.629 2.895s1.623-1.09 1.623-2.895v-.31c0-1.8-.621-2.895-1.623-2.895\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8.012 4.158c1.858 0 2.96-1.582 2.96-3.99V7.84c0-2.426-1.079-3.996-2.936-3.996-1.864 0-2.965 1.588-2.965 3.996v.328c0 2.42 1.09 3.99 2.941 3.99\" />\n      </svg>\n    );\n  },\n);\n\nIcon0CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon0CircleFill;\n"
  },
  {
    "path": "src/icons/0-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon0Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-0-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.988 12.158c-1.851 0-2.941-1.57-2.941-3.99V7.84c0-2.408 1.101-3.996 2.965-3.996 1.857 0 2.935 1.57 2.935 3.996v.328c0 2.408-1.101 3.99-2.959 3.99M8 4.951c-1.008 0-1.629 1.09-1.629 2.895v.31c0 1.81.627 2.895 1.629 2.895s1.623-1.09 1.623-2.895v-.31c0-1.8-.621-2.895-1.623-2.895\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8\" />\n      </svg>\n    );\n  },\n);\n\nIcon0Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon0Circle;\n"
  },
  {
    "path": "src/icons/0-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon0SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-0-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.951c-1.008 0-1.629 1.09-1.629 2.895v.31c0 1.81.627 2.895 1.629 2.895s1.623-1.09 1.623-2.895v-.31c0-1.8-.621-2.895-1.623-2.895\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5.988 12.158c-1.851 0-2.941-1.57-2.941-3.99V7.84c0-2.408 1.101-3.996 2.965-3.996 1.857 0 2.935 1.57 2.935 3.996v.328c0 2.408-1.101 3.99-2.959 3.99\" />\n      </svg>\n    );\n  },\n);\n\nIcon0SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon0SquareFill;\n"
  },
  {
    "path": "src/icons/0-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon0Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-0-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.988 12.158c-1.851 0-2.941-1.57-2.941-3.99V7.84c0-2.408 1.101-3.996 2.965-3.996 1.857 0 2.935 1.57 2.935 3.996v.328c0 2.408-1.101 3.99-2.959 3.99M8 4.951c-1.008 0-1.629 1.09-1.629 2.895v.31c0 1.81.627 2.895 1.629 2.895s1.623-1.09 1.623-2.895v-.31c0-1.8-.621-2.895-1.623-2.895\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon0Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon0Square;\n"
  },
  {
    "path": "src/icons/1-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon1CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-1-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M9.283 4.002H7.971L6.072 5.385v1.271l1.834-1.318h.065V12h1.312z\" />\n      </svg>\n    );\n  },\n);\n\nIcon1CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon1CircleFill;\n"
  },
  {
    "path": "src/icons/1-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon1Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-1-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M9.283 4.002V12H7.971V5.338h-.065L6.072 6.656V5.385l1.899-1.383z\" />\n      </svg>\n    );\n  },\n);\n\nIcon1Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon1Circle;\n"
  },
  {
    "path": "src/icons/1-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon1SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-1-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm7.283 4.002V12H7.971V5.338h-.065L6.072 6.656V5.385l1.899-1.383z\" />\n      </svg>\n    );\n  },\n);\n\nIcon1SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon1SquareFill;\n"
  },
  {
    "path": "src/icons/1-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon1Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-1-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.283 4.002V12H7.971V5.338h-.065L6.072 6.656V5.385l1.899-1.383z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon1Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon1Square;\n"
  },
  {
    "path": "src/icons/123.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon123 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-123', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.873 11.297V4.142H1.699L0 5.379v1.137l1.64-1.18h.06v5.961zm3.213-5.09v-.063c0-.618.44-1.169 1.196-1.169.676 0 1.174.44 1.174 1.106 0 .624-.42 1.101-.807 1.526L4.99 10.553v.744h4.78v-.99H6.643v-.069L8.41 8.252c.65-.724 1.237-1.332 1.237-2.27C9.646 4.849 8.723 4 7.308 4c-1.573 0-2.36 1.064-2.36 2.15v.057zm6.559 1.883h.786c.823 0 1.374.481 1.379 1.179.01.707-.55 1.216-1.421 1.21-.77-.005-1.326-.419-1.379-.953h-1.095c.042 1.053.938 1.918 2.464 1.918 1.478 0 2.642-.839 2.62-2.144-.02-1.143-.922-1.651-1.551-1.714v-.063c.535-.09 1.347-.66 1.326-1.678-.026-1.053-.933-1.855-2.359-1.845-1.5.005-2.317.88-2.348 1.898h1.116c.032-.498.498-.944 1.206-.944.703 0 1.206.435 1.206 1.07.005.64-.504 1.106-1.2 1.106h-.75z\" />\n      </svg>\n    );\n  },\n);\n\nIcon123.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon123;\n"
  },
  {
    "path": "src/icons/2-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon2CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-2-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.646 6.24c0-.691.493-1.306 1.336-1.306.756 0 1.313.492 1.313 1.236 0 .697-.469 1.23-.902 1.705l-2.971 3.293V12h5.344v-1.107H7.268v-.077l1.974-2.22.096-.107c.688-.763 1.287-1.428 1.287-2.43 0-1.266-1.031-2.215-2.613-2.215-1.758 0-2.637 1.19-2.637 2.402v.065h1.271v-.07Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon2CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon2CircleFill;\n"
  },
  {
    "path": "src/icons/2-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon2Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-2-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.646 6.24v.07H5.375v-.064c0-1.213.879-2.402 2.637-2.402 1.582 0 2.613.949 2.613 2.215 0 1.002-.6 1.667-1.287 2.43l-.096.107-1.974 2.22v.077h3.498V12H5.422v-.832l2.97-3.293c.434-.475.903-1.008.903-1.705 0-.744-.557-1.236-1.313-1.236-.843 0-1.336.615-1.336 1.306\" />\n      </svg>\n    );\n  },\n);\n\nIcon2Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon2Circle;\n"
  },
  {
    "path": "src/icons/2-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon2SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-2-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm4.646 6.24v.07H5.375v-.064c0-1.213.879-2.402 2.637-2.402 1.582 0 2.613.949 2.613 2.215 0 1.002-.6 1.667-1.287 2.43l-.096.107-1.974 2.22v.077h3.498V12H5.422v-.832l2.97-3.293c.434-.475.903-1.008.903-1.705 0-.744-.557-1.236-1.313-1.236-.843 0-1.336.615-1.336 1.306\" />\n      </svg>\n    );\n  },\n);\n\nIcon2SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon2SquareFill;\n"
  },
  {
    "path": "src/icons/2-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon2Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-2-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.646 6.24v.07H5.375v-.064c0-1.213.879-2.402 2.637-2.402 1.582 0 2.613.949 2.613 2.215 0 1.002-.6 1.667-1.287 2.43l-.096.107-1.974 2.22v.077h3.498V12H5.422v-.832l2.97-3.293c.434-.475.903-1.008.903-1.705 0-.744-.557-1.236-1.313-1.236-.843 0-1.336.615-1.336 1.306\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon2Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon2Square;\n"
  },
  {
    "path": "src/icons/3-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon3CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-3-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8.082.414c.92 0 1.535.54 1.541 1.318.012.791-.615 1.36-1.588 1.354-.861-.006-1.482-.469-1.54-1.066H5.104c.047 1.177 1.05 2.144 2.754 2.144 1.653 0 2.954-.937 2.93-2.396-.023-1.278-1.031-1.846-1.734-1.916v-.07c.597-.1 1.505-.739 1.482-1.876-.03-1.177-1.043-2.074-2.637-2.062-1.675.006-2.59.984-2.625 2.12h1.248c.036-.556.557-1.054 1.348-1.054.785 0 1.348.486 1.348 1.195.006.715-.563 1.237-1.342 1.237h-.838v1.072h.879Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon3CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon3CircleFill;\n"
  },
  {
    "path": "src/icons/3-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon3Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-3-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.918 8.414h-.879V7.342h.838c.78 0 1.348-.522 1.342-1.237 0-.709-.563-1.195-1.348-1.195-.79 0-1.312.498-1.348 1.055H5.275c.036-1.137.95-2.115 2.625-2.121 1.594-.012 2.608.885 2.637 2.062.023 1.137-.885 1.776-1.482 1.875v.07c.703.07 1.71.64 1.734 1.917.024 1.459-1.277 2.396-2.93 2.396-1.705 0-2.707-.967-2.754-2.144H6.33c.059.597.68 1.06 1.541 1.066.973.006 1.6-.563 1.588-1.354-.006-.779-.621-1.318-1.541-1.318\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8\" />\n      </svg>\n    );\n  },\n);\n\nIcon3Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon3Circle;\n"
  },
  {
    "path": "src/icons/3-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon3SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-3-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5.918 8.414h-.879V7.342h.838c.78 0 1.348-.522 1.342-1.237 0-.709-.563-1.195-1.348-1.195-.79 0-1.312.498-1.348 1.055H5.275c.036-1.137.95-2.115 2.625-2.121 1.594-.012 2.608.885 2.637 2.062.023 1.137-.885 1.776-1.482 1.875v.07c.703.07 1.71.64 1.734 1.917.024 1.459-1.277 2.396-2.93 2.396-1.705 0-2.707-.967-2.754-2.144H6.33c.059.597.68 1.06 1.541 1.066.973.006 1.6-.563 1.588-1.354-.006-.779-.621-1.318-1.541-1.318\" />\n      </svg>\n    );\n  },\n);\n\nIcon3SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon3SquareFill;\n"
  },
  {
    "path": "src/icons/3-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon3Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-3-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.918 8.414h-.879V7.342h.838c.78 0 1.348-.522 1.342-1.237 0-.709-.563-1.195-1.348-1.195-.79 0-1.312.498-1.348 1.055H5.275c.036-1.137.95-2.115 2.625-2.121 1.594-.012 2.608.885 2.637 2.062.023 1.137-.885 1.776-1.482 1.875v.07c.703.07 1.71.64 1.734 1.917.024 1.459-1.277 2.396-2.93 2.396-1.705 0-2.707-.967-2.754-2.144H6.33c.059.597.68 1.06 1.541 1.066.973.006 1.6-.563 1.588-1.354-.006-.779-.621-1.318-1.541-1.318\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon3Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon3Square;\n"
  },
  {
    "path": "src/icons/4-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon4CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-4-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M7.519 5.057c-.886 1.418-1.772 2.838-2.542 4.265v1.12H8.85V12h1.26v-1.559h1.007V9.334H10.11V4.002H8.176zM6.225 9.281v.053H8.85V5.063h-.065c-.867 1.33-1.787 2.806-2.56 4.218\" />\n      </svg>\n    );\n  },\n);\n\nIcon4CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon4CircleFill;\n"
  },
  {
    "path": "src/icons/4-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon4Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-4-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.519 5.057q.33-.527.657-1.055h1.933v5.332h1.008v1.107H10.11V12H8.85v-1.559H4.978V9.322c.77-1.427 1.656-2.847 2.542-4.265ZM6.225 9.281v.053H8.85V5.063h-.065c-.867 1.33-1.787 2.806-2.56 4.218\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8\" />\n      </svg>\n    );\n  },\n);\n\nIcon4Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon4Circle;\n"
  },
  {
    "path": "src/icons/4-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon4SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-4-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.225 9.281v.053H8.85V5.063h-.065c-.867 1.33-1.787 2.806-2.56 4.218\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5.519 5.057q.33-.527.657-1.055h1.933v5.332h1.008v1.107H10.11V12H8.85v-1.559H4.978V9.322c.77-1.427 1.656-2.847 2.542-4.265Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon4SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon4SquareFill;\n"
  },
  {
    "path": "src/icons/4-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon4Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-4-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.519 5.057q.33-.527.657-1.055h1.933v5.332h1.008v1.107H10.11V12H8.85v-1.559H4.978V9.322c.77-1.427 1.656-2.847 2.542-4.265ZM6.225 9.281v.053H8.85V5.063h-.065c-.867 1.33-1.787 2.806-2.56 4.218\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon4Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon4Square;\n"
  },
  {
    "path": "src/icons/5-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon5CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-5-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8.006 4.158c1.74 0 2.924-1.119 2.924-2.806 0-1.641-1.178-2.584-2.56-2.584-.897 0-1.442.421-1.612.68h-.064l.193-2.344h3.621V4.002H5.791L5.445 8.63h1.149c.193-.358.668-.809 1.435-.809.85 0 1.582.604 1.582 1.57 0 1.085-.779 1.682-1.57 1.682-.697 0-1.389-.31-1.53-1.031H5.276c.065 1.213 1.149 2.115 2.72 2.115Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon5CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon5CircleFill;\n"
  },
  {
    "path": "src/icons/5-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon5Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-5-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8m15 0A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-8.006 4.158c-1.57 0-2.654-.902-2.719-2.115h1.237c.14.72.832 1.031 1.529 1.031.791 0 1.57-.597 1.57-1.681 0-.967-.732-1.57-1.582-1.57-.767 0-1.242.45-1.435.808H5.445L5.791 4h4.705v1.103H6.875l-.193 2.343h.064c.17-.258.715-.68 1.611-.68 1.383 0 2.561.944 2.561 2.585 0 1.687-1.184 2.806-2.924 2.806Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon5Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon5Circle;\n"
  },
  {
    "path": "src/icons/5-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon5SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-5-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5.994 12.158c-1.57 0-2.654-.902-2.719-2.115h1.237c.14.72.832 1.031 1.529 1.031.791 0 1.57-.597 1.57-1.681 0-.967-.732-1.57-1.582-1.57-.767 0-1.242.45-1.435.808H5.445L5.791 4h4.705v1.103H6.875l-.193 2.343h.064c.17-.258.715-.68 1.611-.68 1.383 0 2.561.944 2.561 2.585 0 1.687-1.184 2.806-2.924 2.806Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon5SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon5SquareFill;\n"
  },
  {
    "path": "src/icons/5-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon5Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-5-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.994 12.158c-1.57 0-2.654-.902-2.719-2.115h1.237c.14.72.832 1.031 1.529 1.031.791 0 1.57-.597 1.57-1.681 0-.967-.732-1.57-1.582-1.57-.767 0-1.242.45-1.435.808H5.445L5.791 4h4.705v1.103H6.875l-.193 2.343h.064c.17-.258.715-.68 1.611-.68 1.383 0 2.561.944 2.561 2.585 0 1.687-1.184 2.806-2.924 2.806Z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon5Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon5Square;\n"
  },
  {
    "path": "src/icons/6-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon6CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-6-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.21 3.855c-1.868 0-3.116 1.395-3.116 4.407 0 1.183.228 2.039.597 2.642.569.926 1.477 1.254 2.409 1.254 1.629 0 2.847-1.013 2.847-2.783 0-1.676-1.254-2.555-2.508-2.555-1.125 0-1.752.61-1.98 1.155h-.082c-.012-1.946.727-3.036 1.805-3.036.802 0 1.213.457 1.312.815h1.29c-.06-.908-.962-1.899-2.573-1.899Zm-.099 4.008c-.92 0-1.564.65-1.564 1.576 0 1.032.703 1.635 1.558 1.635.868 0 1.553-.533 1.553-1.629 0-1.06-.744-1.582-1.547-1.582\" />\n      </svg>\n    );\n  },\n);\n\nIcon6CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon6CircleFill;\n"
  },
  {
    "path": "src/icons/6-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon6Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-6-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.21 3.855c1.612 0 2.515.99 2.573 1.899H9.494c-.1-.358-.51-.815-1.312-.815-1.078 0-1.817 1.09-1.805 3.036h.082c.229-.545.855-1.155 1.98-1.155 1.254 0 2.508.88 2.508 2.555 0 1.77-1.218 2.783-2.847 2.783-.932 0-1.84-.328-2.409-1.254-.369-.603-.597-1.459-.597-2.642 0-3.012 1.248-4.407 3.117-4.407Zm-.099 4.008c-.92 0-1.564.65-1.564 1.576 0 1.032.703 1.635 1.558 1.635.868 0 1.553-.533 1.553-1.629 0-1.06-.744-1.582-1.547-1.582\" />\n      </svg>\n    );\n  },\n);\n\nIcon6Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon6Circle;\n"
  },
  {
    "path": "src/icons/6-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon6SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-6-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.111 7.863c-.92 0-1.564.65-1.564 1.576 0 1.032.703 1.635 1.558 1.635.868 0 1.553-.533 1.553-1.629 0-1.06-.744-1.582-1.547-1.582\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.21 3.855c1.612 0 2.515.99 2.573 1.899H9.494c-.1-.358-.51-.815-1.312-.815-1.078 0-1.817 1.09-1.805 3.036h.082c.229-.545.855-1.155 1.98-1.155 1.254 0 2.508.88 2.508 2.555 0 1.77-1.218 2.783-2.847 2.783-.932 0-1.84-.328-2.409-1.254-.369-.603-.597-1.459-.597-2.642 0-3.012 1.248-4.407 3.117-4.407Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon6SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon6SquareFill;\n"
  },
  {
    "path": "src/icons/6-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon6Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-6-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.21 3.855c1.612 0 2.515.99 2.573 1.899H9.494c-.1-.358-.51-.815-1.312-.815-1.078 0-1.817 1.09-1.805 3.036h.082c.229-.545.855-1.155 1.98-1.155 1.254 0 2.508.88 2.508 2.555 0 1.77-1.218 2.783-2.847 2.783-.932 0-1.84-.328-2.409-1.254-.369-.603-.597-1.459-.597-2.642 0-3.012 1.248-4.407 3.117-4.407Zm-.099 4.008c-.92 0-1.564.65-1.564 1.576 0 1.032.703 1.635 1.558 1.635.868 0 1.553-.533 1.553-1.629 0-1.06-.744-1.582-1.547-1.582\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon6Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon6Square;\n"
  },
  {
    "path": "src/icons/7-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon7CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-7-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.37 5.11h3.972v.07L6.025 12H7.42l3.258-6.85V4.002H5.369v1.107Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon7CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon7CircleFill;\n"
  },
  {
    "path": "src/icons/7-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon7Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-7-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.37 5.11V4.001h5.308V5.15L7.42 12H6.025l3.317-6.82v-.07H5.369Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon7Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon7Circle;\n"
  },
  {
    "path": "src/icons/7-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon7SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-7-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.37 5.11V4.001h5.308V5.15L7.42 12H6.025l3.317-6.82v-.07H5.369Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon7SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon7SquareFill;\n"
  },
  {
    "path": "src/icons/7-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon7Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-7-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.37 5.11V4.001h5.308V5.15L7.42 12H6.025l3.317-6.82v-.07H5.369Z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon7Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon7Square;\n"
  },
  {
    "path": "src/icons/8-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon8CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-8-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5.03 1.803c0-1.248-.943-1.84-1.646-1.992v-.065c.598-.187 1.336-.72 1.336-1.781 0-1.225-1.084-2.121-2.654-2.121s-2.66.896-2.66 2.12c0 1.044.709 1.589 1.33 1.782v.065c-.697.152-1.647.732-1.647 2.003 0 1.39 1.19 2.344 2.953 2.344 1.77 0 2.989-.96 2.989-2.355Zm-4.347-3.71c0 .739.586 1.255 1.383 1.255s1.377-.516 1.377-1.254c0-.733-.58-1.23-1.377-1.23s-1.383.497-1.383 1.23Zm-.281 3.645c0 .838.72 1.412 1.664 1.412.943 0 1.658-.574 1.658-1.412 0-.843-.715-1.424-1.658-1.424-.944 0-1.664.58-1.664 1.424\" />\n      </svg>\n    );\n  },\n);\n\nIcon8CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon8CircleFill;\n"
  },
  {
    "path": "src/icons/8-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon8Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-8-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5.03 1.803c0 1.394-1.218 2.355-2.988 2.355-1.763 0-2.953-.955-2.953-2.344 0-1.271.95-1.851 1.647-2.003v-.065c-.621-.193-1.33-.738-1.33-1.781 0-1.225 1.09-2.121 2.66-2.121s2.654.896 2.654 2.12c0 1.061-.738 1.595-1.336 1.782v.065c.703.152 1.647.744 1.647 1.992Zm-4.347-3.71c0 .739.586 1.255 1.383 1.255s1.377-.516 1.377-1.254c0-.733-.58-1.23-1.377-1.23s-1.383.497-1.383 1.23Zm-.281 3.645c0 .838.72 1.412 1.664 1.412.943 0 1.658-.574 1.658-1.412 0-.843-.715-1.424-1.658-1.424-.944 0-1.664.58-1.664 1.424\" />\n      </svg>\n    );\n  },\n);\n\nIcon8Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon8Circle;\n"
  },
  {
    "path": "src/icons/8-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon8SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-8-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.623 6.094c0 .738.586 1.254 1.383 1.254s1.377-.516 1.377-1.254c0-.733-.58-1.23-1.377-1.23s-1.383.497-1.383 1.23m-.281 3.644c0 .838.72 1.412 1.664 1.412.943 0 1.658-.574 1.658-1.412 0-.843-.715-1.424-1.658-1.424-.944 0-1.664.58-1.664 1.424\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm8.97 9.803c0 1.394-1.218 2.355-2.988 2.355-1.763 0-2.953-.955-2.953-2.344 0-1.271.95-1.851 1.647-2.003v-.065c-.621-.193-1.33-.738-1.33-1.781 0-1.225 1.09-2.121 2.66-2.121s2.654.896 2.654 2.12c0 1.061-.738 1.595-1.336 1.782v.065c.703.152 1.647.744 1.647 1.992Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon8SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon8SquareFill;\n"
  },
  {
    "path": "src/icons/8-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon8Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-8-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.97 9.803c0 1.394-1.218 2.355-2.988 2.355-1.763 0-2.953-.955-2.953-2.344 0-1.271.95-1.851 1.647-2.003v-.065c-.621-.193-1.33-.738-1.33-1.781 0-1.225 1.09-2.121 2.66-2.121s2.654.896 2.654 2.12c0 1.061-.738 1.595-1.336 1.782v.065c.703.152 1.647.744 1.647 1.992Zm-4.347-3.71c0 .739.586 1.255 1.383 1.255s1.377-.516 1.377-1.254c0-.733-.58-1.23-1.377-1.23s-1.383.497-1.383 1.23Zm-.281 3.645c0 .838.72 1.412 1.664 1.412.943 0 1.658-.574 1.658-1.412 0-.843-.715-1.424-1.658-1.424-.944 0-1.664.58-1.664 1.424\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon8Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon8Square;\n"
  },
  {
    "path": "src/icons/9-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon9CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-9-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8.223 4.146c2.104 0 3.123-1.464 3.123-4.3 0-3.147-1.459-4.014-2.97-4.014-1.63 0-2.871 1.02-2.871 2.73 0 1.706 1.171 2.667 2.566 2.667 1.06 0 1.7-.557 1.934-1.184h.076c.047 1.67-.475 3.023-1.834 3.023-.71 0-1.149-.363-1.248-.72H5.258c.094.908.926 1.798 2.52 1.798Zm.118-3.972c.808 0 1.535-.528 1.535-1.594s-.668-1.676-1.56-1.676c-.838 0-1.517.616-1.517 1.659 0 1.072.708 1.61 1.54 1.61Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon9CircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon9CircleFill;\n"
  },
  {
    "path": "src/icons/9-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon9Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-9-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8.223 4.146c-1.593 0-2.425-.89-2.52-1.798h1.296c.1.357.539.72 1.248.72 1.36 0 1.88-1.353 1.834-3.023h-.076c-.235.627-.873 1.184-1.934 1.184-1.395 0-2.566-.961-2.566-2.666 0-1.711 1.242-2.731 2.87-2.731 1.512 0 2.971.867 2.971 4.014 0 2.836-1.02 4.3-3.123 4.3m.118-3.972c.808 0 1.535-.528 1.535-1.594s-.668-1.676-1.56-1.676c-.838 0-1.517.616-1.517 1.659 0 1.072.708 1.61 1.54 1.61Z\" />\n      </svg>\n    );\n  },\n);\n\nIcon9Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon9Circle;\n"
  },
  {
    "path": "src/icons/9-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon9SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-9-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.895 8.174c.808 0 1.535-.528 1.535-1.594s-.668-1.676-1.56-1.676c-.838 0-1.517.616-1.517 1.659 0 1.072.708 1.61 1.54 1.61Z\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5.777 12.146c-1.593 0-2.425-.89-2.52-1.798h1.296c.1.357.539.72 1.248.72 1.36 0 1.88-1.353 1.834-3.023h-.076c-.235.627-.873 1.184-1.934 1.184-1.395 0-2.566-.961-2.566-2.666 0-1.711 1.242-2.731 2.87-2.731 1.512 0 2.971.867 2.971 4.014 0 2.836-1.02 4.3-3.123 4.3\" />\n      </svg>\n    );\n  },\n);\n\nIcon9SquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon9SquareFill;\n"
  },
  {
    "path": "src/icons/9-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Icon9Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-9-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.777 12.146c-1.593 0-2.425-.89-2.52-1.798h1.296c.1.357.539.72 1.248.72 1.36 0 1.88-1.353 1.834-3.023h-.076c-.235.627-.873 1.184-1.934 1.184-1.395 0-2.566-.961-2.566-2.666 0-1.711 1.242-2.731 2.87-2.731 1.512 0 2.971.867 2.971 4.014 0 2.836-1.02 4.3-3.123 4.3m.118-3.972c.808 0 1.535-.528 1.535-1.594s-.668-1.676-1.56-1.676c-.838 0-1.517.616-1.517 1.659 0 1.072.708 1.61 1.54 1.61Z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nIcon9Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Icon9Square;\n"
  },
  {
    "path": "src/icons/activity.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Activity = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-activity', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2\"\n        />\n      </svg>\n    );\n  },\n);\n\nActivity.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Activity;\n"
  },
  {
    "path": "src/icons/airplane-engines-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AirplaneEnginesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-airplane-engines-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0c-.787 0-1.292.592-1.572 1.151A4.35 4.35 0 0 0 6 3v3.691l-2 1V7.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.191l-1.17.585A1.5 1.5 0 0 0 0 10.618V12a.5.5 0 0 0 .582.493l1.631-.272.313.937a.5.5 0 0 0 .948 0l.405-1.214 2.21-.369.375 2.253-1.318 1.318A.5.5 0 0 0 5.5 16h5a.5.5 0 0 0 .354-.854l-1.318-1.318.375-2.253 2.21.369.405 1.214a.5.5 0 0 0 .948 0l.313-.937 1.63.272A.5.5 0 0 0 16 12v-1.382a1.5 1.5 0 0 0-.83-1.342L14 8.691V7.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v.191l-2-1V3c0-.568-.14-1.271-.428-1.849C9.292.591 8.787 0 8 0\" />\n      </svg>\n    );\n  },\n);\n\nAirplaneEnginesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AirplaneEnginesFill;\n"
  },
  {
    "path": "src/icons/airplane-engines.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AirplaneEngines = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-airplane-engines', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0c-.787 0-1.292.592-1.572 1.151A4.35 4.35 0 0 0 6 3v3.691l-2 1V7.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.191l-1.17.585A1.5 1.5 0 0 0 0 10.618V12a.5.5 0 0 0 .582.493l1.631-.272.313.937a.5.5 0 0 0 .948 0l.405-1.214 2.21-.369.375 2.253-1.318 1.318A.5.5 0 0 0 5.5 16h5a.5.5 0 0 0 .354-.854l-1.318-1.318.375-2.253 2.21.369.405 1.214a.5.5 0 0 0 .948 0l.313-.937 1.63.272A.5.5 0 0 0 16 12v-1.382a1.5 1.5 0 0 0-.83-1.342L14 8.691V7.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v.191l-2-1V3c0-.568-.14-1.271-.428-1.849C9.292.591 8.787 0 8 0M7 3c0-.432.11-.979.322-1.401C7.542 1.159 7.787 1 8 1s.458.158.678.599C8.889 2.02 9 2.569 9 3v4a.5.5 0 0 0 .276.447l5.448 2.724a.5.5 0 0 1 .276.447v.792l-5.418-.903a.5.5 0 0 0-.575.41l-.5 3a.5.5 0 0 0 .14.437l.646.646H6.707l.647-.646a.5.5 0 0 0 .14-.436l-.5-3a.5.5 0 0 0-.576-.411L1 11.41v-.792a.5.5 0 0 1 .276-.447l5.448-2.724A.5.5 0 0 0 7 7z\" />\n      </svg>\n    );\n  },\n);\n\nAirplaneEngines.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AirplaneEngines;\n"
  },
  {
    "path": "src/icons/airplane-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AirplaneFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-airplane-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.428 1.151C6.708.591 7.213 0 8 0s1.292.592 1.572 1.151C9.861 1.73 10 2.431 10 3v3.691l5.17 2.585a1.5 1.5 0 0 1 .83 1.342V12a.5.5 0 0 1-.582.493l-5.507-.918-.375 2.253 1.318 1.318A.5.5 0 0 1 10.5 16h-5a.5.5 0 0 1-.354-.854l1.319-1.318-.376-2.253-5.507.918A.5.5 0 0 1 0 12v-1.382a1.5 1.5 0 0 1 .83-1.342L6 6.691V3c0-.568.14-1.271.428-1.849\" />\n      </svg>\n    );\n  },\n);\n\nAirplaneFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AirplaneFill;\n"
  },
  {
    "path": "src/icons/airplane.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Airplane = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-airplane', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.428 1.151C6.708.591 7.213 0 8 0s1.292.592 1.572 1.151C9.861 1.73 10 2.431 10 3v3.691l5.17 2.585a1.5 1.5 0 0 1 .83 1.342V12a.5.5 0 0 1-.582.493l-5.507-.918-.375 2.253 1.318 1.318A.5.5 0 0 1 10.5 16h-5a.5.5 0 0 1-.354-.854l1.319-1.318-.376-2.253-5.507.918A.5.5 0 0 1 0 12v-1.382a1.5 1.5 0 0 1 .83-1.342L6 6.691V3c0-.568.14-1.271.428-1.849m.894.448C7.111 2.02 7 2.569 7 3v4a.5.5 0 0 1-.276.447l-5.448 2.724a.5.5 0 0 0-.276.447v.792l5.418-.903a.5.5 0 0 1 .575.41l.5 3a.5.5 0 0 1-.14.437L6.708 15h2.586l-.647-.646a.5.5 0 0 1-.14-.436l.5-3a.5.5 0 0 1 .576-.411L15 11.41v-.792a.5.5 0 0 0-.276-.447L9.276 7.447A.5.5 0 0 1 9 7V3c0-.432-.11-.979-.322-1.401C8.458 1.159 8.213 1 8 1s-.458.158-.678.599\" />\n      </svg>\n    );\n  },\n);\n\nAirplane.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Airplane;\n"
  },
  {
    "path": "src/icons/alarm-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlarmFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alarm-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9v1.07a7.001 7.001 0 0 1 3.274 12.474l.601.602a.5.5 0 0 1-.707.708l-.746-.746A6.97 6.97 0 0 1 8 16a6.97 6.97 0 0 1-3.422-.892l-.746.746a.5.5 0 0 1-.707-.708l.602-.602A7.001 7.001 0 0 1 7 2.07V1h-.5A.5.5 0 0 1 6 .5m2.5 5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9zM.86 5.387A2.5 2.5 0 1 1 4.387 1.86 8.04 8.04 0 0 0 .86 5.387M11.613 1.86a2.5 2.5 0 1 1 3.527 3.527 8.04 8.04 0 0 0-3.527-3.527\" />\n      </svg>\n    );\n  },\n);\n\nAlarmFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlarmFill;\n"
  },
  {
    "path": "src/icons/alarm.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Alarm = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alarm', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9z\" />\n        <path d=\"M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1zm1.038 3.018a6 6 0 0 1 .924 0 6 6 0 1 1-.924 0M0 3.5c0 .753.333 1.429.86 1.887A8.04 8.04 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5M13.5 1c-.753 0-1.429.333-1.887.86a8.04 8.04 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1\" />\n      </svg>\n    );\n  },\n);\n\nAlarm.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Alarm;\n"
  },
  {
    "path": "src/icons/alexa.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Alexa = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alexa', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.996 0A8 8 0 0 0 0 8a8 8 0 0 0 6.93 7.93v-1.613a1.06 1.06 0 0 0-.717-1.008A5.6 5.6 0 0 1 2.4 7.865 5.58 5.58 0 0 1 8.054 2.4a5.6 5.6 0 0 1 5.535 5.81l-.002.046-.012.192-.005.061a5 5 0 0 1-.033.284l-.01.068c-.685 4.516-6.564 7.054-6.596 7.068A7.998 7.998 0 0 0 15.992 8 8 8 0 0 0 7.996.001Z\" />\n      </svg>\n    );\n  },\n);\n\nAlexa.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Alexa;\n"
  },
  {
    "path": "src/icons/align-bottom.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignBottom = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-bottom', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <rect width=\"4\" height=\"12\" x=\"6\" y=\"1\" rx=\"1\" />\n        <path d=\"M1.5 14a.5.5 0 0 0 0 1zm13 1a.5.5 0 0 0 0-1zm-13 0h13v-1h-13z\" />\n      </svg>\n    );\n  },\n);\n\nAlignBottom.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignBottom;\n"
  },
  {
    "path": "src/icons/align-center.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignCenter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-center', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a.5.5 0 0 1 .5.5V6h-1V1.5A.5.5 0 0 1 8 1m0 14a.5.5 0 0 1-.5-.5V10h1v4.5a.5.5 0 0 1-.5.5M2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nAlignCenter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignCenter;\n"
  },
  {
    "path": "src/icons/align-end.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignEnd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-end', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5\"\n        />\n        <path d=\"M13 7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nAlignEnd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignEnd;\n"
  },
  {
    "path": "src/icons/align-middle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignMiddle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-middle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 13a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1zM1 8a.5.5 0 0 0 .5.5H6v-1H1.5A.5.5 0 0 0 1 8m14 0a.5.5 0 0 1-.5.5H10v-1h4.5a.5.5 0 0 1 .5.5\" />\n      </svg>\n    );\n  },\n);\n\nAlignMiddle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignMiddle;\n"
  },
  {
    "path": "src/icons/align-start.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignStart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-start', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.5 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"M3 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nAlignStart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignStart;\n"
  },
  {
    "path": "src/icons/align-top.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlignTop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-align-top', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <rect width=\"4\" height=\"12\" rx=\"1\" transform=\"matrix(1 0 0 -1 6 15)\" />\n        <path d=\"M1.5 2a.5.5 0 0 1 0-1zm13-1a.5.5 0 0 1 0 1zm-13 0h13v1h-13z\" />\n      </svg>\n    );\n  },\n);\n\nAlignTop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlignTop;\n"
  },
  {
    "path": "src/icons/alipay.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Alipay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alipay', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.541 0H13.5a2.55 2.55 0 0 1 2.54 2.563v8.297c-.006 0-.531-.046-2.978-.813-.412-.14-.916-.327-1.479-.536q-.456-.17-.957-.353a13 13 0 0 0 1.325-3.373H8.822V4.649h3.831v-.634h-3.83V2.121H7.26c-.274 0-.274.273-.274.273v1.621H3.11v.634h3.875v1.136h-3.2v.634H9.99c-.227.789-.532 1.53-.894 2.202-2.013-.67-4.161-1.212-5.51-.878-.864.214-1.42.597-1.746.998-1.499 1.84-.424 4.633 2.741 4.633 1.872 0 3.675-1.053 5.072-2.787 2.08 1.008 6.37 2.738 6.387 2.745v.105A2.55 2.55 0 0 1 13.5 16H2.541A2.55 2.55 0 0 1 0 13.437V2.563A2.55 2.55 0 0 1 2.541 0\" />\n        <path d=\"M2.309 9.27c-1.22 1.073-.49 3.034 1.978 3.034 1.434 0 2.868-.925 3.994-2.406-1.602-.789-2.959-1.353-4.425-1.207-.397.04-1.14.217-1.547.58Z\" />\n      </svg>\n    );\n  },\n);\n\nAlipay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Alipay;\n"
  },
  {
    "path": "src/icons/alphabet-uppercase.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AlphabetUppercase = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alphabet-uppercase', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.226 10.88H0l2.056-6.26h1.42l2.047 6.26h-1.29l-.48-1.61H1.707l-.48 1.61ZM2.76 5.818h-.054l-.75 2.532H3.51zm3.217 5.062V4.62h2.56c1.09 0 1.808.582 1.808 1.54 0 .762-.444 1.22-1.05 1.372v.055c.736.074 1.365.587 1.365 1.528 0 1.119-.89 1.766-2.133 1.766zM7.18 5.55v1.675h.8c.812 0 1.171-.308 1.171-.853 0-.51-.328-.822-.898-.822zm0 2.537V9.95h.903c.951 0 1.342-.312 1.342-.909 0-.591-.382-.954-1.095-.954zm5.089-.711v.775c0 1.156.49 1.803 1.347 1.803.705 0 1.163-.454 1.212-1.096H16v.12C15.942 10.173 14.95 11 13.607 11c-1.648 0-2.573-1.073-2.573-2.849v-.78c0-1.775.934-2.871 2.573-2.871 1.347 0 2.34.849 2.393 2.087v.115h-1.172c-.05-.665-.516-1.156-1.212-1.156-.849 0-1.347.67-1.347 1.83\" />\n      </svg>\n    );\n  },\n);\n\nAlphabetUppercase.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AlphabetUppercase;\n"
  },
  {
    "path": "src/icons/alphabet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Alphabet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alphabet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.204 11.078c.767 0 1.201-.356 1.406-.737h.059V11h1.216V7.519c0-1.314-.947-1.783-2.11-1.783C1.355 5.736.75 6.42.69 7.27h1.216c.064-.323.313-.552.84-.552s.864.249.864.771v.464H2.346C1.145 7.953.5 8.568.5 9.496c0 .977.693 1.582 1.704 1.582m.42-.947c-.44 0-.845-.235-.845-.718 0-.395.269-.684.84-.684h.991v.538c0 .503-.444.864-.986.864m5.593.937c1.216 0 1.948-.869 1.948-2.31v-.702c0-1.44-.727-2.305-1.929-2.305-.742 0-1.328.347-1.499.889h-.063V3.983h-1.29V11h1.27v-.791h.064c.21.532.776.86 1.499.86Zm-.43-1.025c-.66 0-1.113-.518-1.113-1.28V8.12c0-.825.42-1.343 1.098-1.343.684 0 1.075.518 1.075 1.416v.45c0 .888-.386 1.401-1.06 1.401Zm2.834-1.328c0 1.47.87 2.378 2.305 2.378 1.416 0 2.139-.777 2.158-1.763h-1.186c-.06.425-.313.732-.933.732-.66 0-1.05-.512-1.05-1.352v-.625c0-.81.371-1.328 1.045-1.328.635 0 .879.425.918.776h1.187c-.02-.986-.787-1.806-2.14-1.806-1.41 0-2.304.918-2.304 2.338z\" />\n      </svg>\n    );\n  },\n);\n\nAlphabet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Alphabet;\n"
  },
  {
    "path": "src/icons/alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Alt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-alt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 13.5a.5.5 0 0 0 .5.5h3.797a.5.5 0 0 0 .439-.26L11 3h3.5a.5.5 0 0 0 0-1h-3.797a.5.5 0 0 0-.439.26L5 13H1.5a.5.5 0 0 0-.5.5m10 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Alt;\n"
  },
  {
    "path": "src/icons/amazon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Amazon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-amazon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.813 11.968c.157.083.36.074.5-.05l.005.005a90 90 0 0 1 1.623-1.405c.173-.143.143-.372.006-.563l-.125-.17c-.345-.465-.673-.906-.673-1.791v-3.3l.001-.335c.008-1.265.014-2.421-.933-3.305C10.404.274 9.06 0 8.03 0 6.017 0 3.77.75 3.296 3.24c-.047.264.143.404.316.443l2.054.22c.19-.009.33-.196.366-.387.176-.857.896-1.271 1.703-1.271.435 0 .929.16 1.188.55.264.39.26.91.257 1.376v.432q-.3.033-.621.065c-1.113.114-2.397.246-3.36.67C3.873 5.91 2.94 7.08 2.94 8.798c0 2.2 1.387 3.298 3.168 3.298 1.506 0 2.328-.354 3.489-1.54l.167.246c.274.405.456.675 1.047 1.166ZM6.03 8.431C6.03 6.627 7.647 6.3 9.177 6.3v.57c.001.776.002 1.434-.396 2.133-.336.595-.87.961-1.465.961-.812 0-1.286-.619-1.286-1.533M.435 12.174c2.629 1.603 6.698 4.084 13.183.997.28-.116.475.078.199.431C13.538 13.96 11.312 16 7.57 16 3.832 16 .968 13.446.094 12.386c-.24-.275.036-.4.199-.299z\" />\n        <path d=\"M13.828 11.943c.567-.07 1.468-.027 1.645.204.135.176-.004.966-.233 1.533-.23.563-.572.961-.762 1.115s-.333.094-.23-.137c.105-.23.684-1.663.455-1.963-.213-.278-1.177-.177-1.625-.13l-.09.009q-.142.013-.233.024c-.193.021-.245.027-.274-.032-.074-.209.779-.556 1.347-.623\" />\n      </svg>\n    );\n  },\n);\n\nAmazon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Amazon;\n"
  },
  {
    "path": "src/icons/amd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Amd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-amd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m.334 0 4.358 4.359h7.15v7.15l4.358 4.358V0zM.2 9.72l4.487-4.488v6.281h6.28L6.48 16H.2z\" />\n      </svg>\n    );\n  },\n);\n\nAmd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Amd;\n"
  },
  {
    "path": "src/icons/android.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Android = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-android', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.76 3.061a.5.5 0 0 1 .679.2l1.283 2.352A8.9 8.9 0 0 1 8 5a8.9 8.9 0 0 1 3.278.613l1.283-2.352a.5.5 0 1 1 .878.478l-1.252 2.295C14.475 7.266 16 9.477 16 12H0c0-2.523 1.525-4.734 3.813-5.966L2.56 3.74a.5.5 0 0 1 .2-.678ZM5 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2m6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nAndroid.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Android;\n"
  },
  {
    "path": "src/icons/android2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Android2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-android2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m10.213 1.471.691-1.26q.069-.124-.048-.192-.128-.057-.195.058l-.7 1.27A4.8 4.8 0 0 0 8.005.941q-1.032 0-1.956.404l-.7-1.27Q5.281-.037 5.154.02q-.117.069-.049.193l.691 1.259a4.25 4.25 0 0 0-1.673 1.476A3.7 3.7 0 0 0 3.5 5.02h9q0-1.125-.623-2.072a4.27 4.27 0 0 0-1.664-1.476ZM6.22 3.303a.37.37 0 0 1-.267.11.35.35 0 0 1-.263-.11.37.37 0 0 1-.107-.264.37.37 0 0 1 .107-.265.35.35 0 0 1 .263-.11q.155 0 .267.11a.36.36 0 0 1 .112.265.36.36 0 0 1-.112.264m4.101 0a.35.35 0 0 1-.262.11.37.37 0 0 1-.268-.11.36.36 0 0 1-.112-.264q0-.154.112-.265a.37.37 0 0 1 .268-.11q.155 0 .262.11a.37.37 0 0 1 .107.265q0 .153-.107.264M3.5 11.77q0 .441.311.75.311.306.76.307h.758l.01 2.182q0 .414.292.703a.96.96 0 0 0 .7.288.97.97 0 0 0 .71-.288.95.95 0 0 0 .292-.703v-2.182h1.343v2.182q0 .414.292.703a.97.97 0 0 0 .71.288.97.97 0 0 0 .71-.288.95.95 0 0 0 .292-.703v-2.182h.76q.436 0 .749-.308.31-.307.311-.75V5.365h-9zm10.495-6.587a.98.98 0 0 0-.702.278.9.9 0 0 0-.293.685v4.063q0 .406.293.69a.97.97 0 0 0 .702.284q.42 0 .712-.284a.92.92 0 0 0 .293-.69V6.146a.9.9 0 0 0-.293-.685 1 1 0 0 0-.712-.278m-12.702.283a1 1 0 0 1 .712-.283q.41 0 .702.283a.9.9 0 0 1 .293.68v4.063a.93.93 0 0 1-.288.69.97.97 0 0 1-.707.284 1 1 0 0 1-.712-.284.92.92 0 0 1-.293-.69V6.146q0-.396.293-.68\" />\n      </svg>\n    );\n  },\n);\n\nAndroid2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Android2;\n"
  },
  {
    "path": "src/icons/anthropic.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Anthropic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-anthropic', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.218 2h2.402L16 12.987h-2.402zM4.379 2h2.512l4.38 10.987H8.82l-.895-2.308h-4.58l-.896 2.307H0L4.38 2.001zm2.755 6.64L5.635 4.777 4.137 8.64z\"\n        />\n      </svg>\n    );\n  },\n);\n\nAnthropic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Anthropic;\n"
  },
  {
    "path": "src/icons/app-indicator.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AppIndicator = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-app-indicator', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 2A3.5 3.5 0 0 0 2 5.5v5A3.5 3.5 0 0 0 5.5 14h5a3.5 3.5 0 0 0 3.5-3.5V8a.5.5 0 0 1 1 0v2.5a4.5 4.5 0 0 1-4.5 4.5h-5A4.5 4.5 0 0 1 1 10.5v-5A4.5 4.5 0 0 1 5.5 1H8a.5.5 0 0 1 0 1z\" />\n        <path d=\"M16 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n      </svg>\n    );\n  },\n);\n\nAppIndicator.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AppIndicator;\n"
  },
  {
    "path": "src/icons/app.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst App = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-app', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3zM5 1a4 4 0 0 0-4 4v6a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4z\" />\n      </svg>\n    );\n  },\n);\n\nApp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default App;\n"
  },
  {
    "path": "src/icons/apple-music.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AppleMusic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-apple-music', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m10.995 0 .573.001q.241 0 .483.007c.35.01.705.03 1.051.093.352.063.68.166.999.329a3.36 3.36 0 0 1 1.47 1.468c.162.32.265.648.328 1 .063.347.084.7.093 1.051q.007.241.007.483l.001.573v5.99l-.001.573q0 .241-.008.483c-.01.35-.03.704-.092 1.05a3.5 3.5 0 0 1-.33 1 3.36 3.36 0 0 1-1.468 1.468 3.5 3.5 0 0 1-1 .33 7 7 0 0 1-1.05.092q-.241.007-.483.008l-.573.001h-5.99l-.573-.001q-.241 0-.483-.008a7 7 0 0 1-1.052-.092 3.6 3.6 0 0 1-.998-.33 3.36 3.36 0 0 1-1.47-1.468 3.6 3.6 0 0 1-.328-1 7 7 0 0 1-.093-1.05Q.002 11.81 0 11.568V5.005l.001-.573q0-.241.007-.483c.01-.35.03-.704.093-1.05a3.6 3.6 0 0 1 .329-1A3.36 3.36 0 0 1 1.9.431 3.5 3.5 0 0 1 2.896.1 7 7 0 0 1 3.95.008Q4.19.002 4.432 0h.573zm-.107 2.518-4.756.959H6.13a.66.66 0 0 0-.296.133.5.5 0 0 0-.16.31c-.004.027-.01.08-.01.16v5.952c0 .14-.012.275-.106.39-.095.115-.21.15-.347.177l-.31.063c-.393.08-.65.133-.881.223a1.4 1.4 0 0 0-.519.333 1.25 1.25 0 0 0-.332.995c.031.297.166.582.395.792.156.142.35.25.578.296.236.047.49.031.858-.043.196-.04.38-.102.555-.205a1.4 1.4 0 0 0 .438-.405 1.5 1.5 0 0 0 .233-.55c.042-.202.052-.386.052-.588V6.347c0-.276.08-.35.302-.404.024-.005 3.954-.797 4.138-.833.257-.049.378.025.378.294v3.524c0 .14-.001.28-.096.396-.094.115-.211.15-.348.178l-.31.062c-.393.08-.649.133-.88.223a1.4 1.4 0 0 0-.52.334 1.26 1.26 0 0 0-.34.994c.03.297.174.582.404.792a1.2 1.2 0 0 0 .577.294c.237.048.49.03.858-.044.197-.04.381-.098.556-.202a1.4 1.4 0 0 0 .438-.405q.173-.252.233-.549a2.7 2.7 0 0 0 .044-.589V2.865c0-.273-.143-.443-.4-.42-.04.003-.383.064-.424.073\"\n        />\n      </svg>\n    );\n  },\n);\n\nAppleMusic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AppleMusic;\n"
  },
  {
    "path": "src/icons/apple.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Apple = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-apple', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516s1.52.087 2.475-1.258.762-2.391.728-2.43m3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422s1.675-2.789 1.698-2.854-.597-.79-1.254-1.157a3.7 3.7 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56s.625 1.924 1.273 2.796c.576.984 1.34 1.667 1.659 1.899s1.219.386 1.843.067c.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758q.52-1.185.473-1.282\" />\n        <path d=\"M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516s1.52.087 2.475-1.258.762-2.391.728-2.43m3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422s1.675-2.789 1.698-2.854-.597-.79-1.254-1.157a3.7 3.7 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56s.625 1.924 1.273 2.796c.576.984 1.34 1.667 1.659 1.899s1.219.386 1.843.067c.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758q.52-1.185.473-1.282\" />\n      </svg>\n    );\n  },\n);\n\nApple.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Apple;\n"
  },
  {
    "path": "src/icons/archive-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArchiveFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-archive-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.643 15C13.979 15 15 13.845 15 12.5V5H1v7.5C1 13.845 2.021 15 3.357 15zM5.5 7h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1M.8 1a.8.8 0 0 0-.8.8V3a.8.8 0 0 0 .8.8h14.4A.8.8 0 0 0 16 3V1.8a.8.8 0 0 0-.8-.8z\" />\n      </svg>\n    );\n  },\n);\n\nArchiveFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArchiveFill;\n"
  },
  {
    "path": "src/icons/archive.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Archive = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-archive', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5zm13-3H1v2h14zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nArchive.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Archive;\n"
  },
  {
    "path": "src/icons/arrow-90deg-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Arrow90degDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-90deg-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.854 14.854a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V3.5A2.5 2.5 0 0 1 6.5 1h8a.5.5 0 0 1 0 1h-8A1.5 1.5 0 0 0 5 3.5v9.793l3.146-3.147a.5.5 0 0 1 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrow90degDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Arrow90degDown;\n"
  },
  {
    "path": "src/icons/arrow-90deg-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Arrow90degLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-90deg-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.146 4.854a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H12.5A2.5 2.5 0 0 1 15 6.5v8a.5.5 0 0 1-1 0v-8A1.5 1.5 0 0 0 12.5 5H2.707l3.147 3.146a.5.5 0 1 1-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrow90degLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Arrow90degLeft;\n"
  },
  {
    "path": "src/icons/arrow-90deg-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Arrow90degRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-90deg-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14.854 4.854a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 4H3.5A2.5 2.5 0 0 0 1 6.5v8a.5.5 0 0 0 1 0v-8A1.5 1.5 0 0 1 3.5 5h9.793l-3.147 3.146a.5.5 0 0 0 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrow90degRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Arrow90degRight;\n"
  },
  {
    "path": "src/icons/arrow-90deg-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Arrow90degUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-90deg-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.854 1.146a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L4 2.707V12.5A2.5 2.5 0 0 0 6.5 15h8a.5.5 0 0 0 0-1h-8A1.5 1.5 0 0 1 5 12.5V2.707l3.146 3.147a.5.5 0 1 0 .708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrow90degUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Arrow90degUp;\n"
  },
  {
    "path": "src/icons/arrow-bar-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowBarDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-bar-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 3.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5M8 6a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 .708-.708L7.5 12.293V6.5A.5.5 0 0 1 8 6\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowBarDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowBarDown;\n"
  },
  {
    "path": "src/icons/arrow-bar-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowBarLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-bar-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5M10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowBarLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowBarLeft;\n"
  },
  {
    "path": "src/icons/arrow-bar-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowBarRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-bar-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 8a.5.5 0 0 0 .5.5h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L12.293 7.5H6.5A.5.5 0 0 0 6 8m-2.5 7a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowBarRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowBarRight;\n"
  },
  {
    "path": "src/icons/arrow-bar-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowBarUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-bar-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 10a.5.5 0 0 0 .5-.5V3.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 3.707V9.5a.5.5 0 0 0 .5.5m-7 2.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowBarUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowBarUp;\n"
  },
  {
    "path": "src/icons/arrow-clockwise.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowClockwise = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-clockwise', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2z\"\n        />\n        <path d=\"M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466\" />\n      </svg>\n    );\n  },\n);\n\nArrowClockwise.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowClockwise;\n"
  },
  {
    "path": "src/icons/arrow-counterclockwise.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowCounterclockwise = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-counterclockwise', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2z\"\n        />\n        <path d=\"M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466\" />\n      </svg>\n    );\n  },\n);\n\nArrowCounterclockwise.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowCounterclockwise;\n"
  },
  {
    "path": "src/icons/arrow-down-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-down-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownCircle;\n"
  },
  {
    "path": "src/icons/arrow-down-left-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownLeftCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-left-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-5.904-2.803a.5.5 0 1 1 .707.707L6.707 10h2.768a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.525a.5.5 0 0 1 1 0v2.768z\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownLeftCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownLeftCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-down-left-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownLeftCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-left-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5.904-2.854a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownLeftCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownLeftCircle;\n"
  },
  {
    "path": "src/icons/arrow-down-left-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownLeftSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-left-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2zm8.096-10.803L6 9.293V6.525a.5.5 0 0 0-1 0V10.5a.5.5 0 0 0 .5.5h3.975a.5.5 0 0 0 0-1H6.707l4.096-4.096a.5.5 0 1 0-.707-.707\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownLeftSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownLeftSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-down-left-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownLeftSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-left-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm10.096 3.146a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownLeftSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownLeftSquare;\n"
  },
  {
    "path": "src/icons/arrow-down-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 13.5a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 0-1H3.707L13.854 2.854a.5.5 0 0 0-.708-.708L3 12.293V7.5a.5.5 0 0 0-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownLeft;\n"
  },
  {
    "path": "src/icons/arrow-down-right-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownRightCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-right-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m5.904-2.803a.5.5 0 1 0-.707.707L9.293 10H6.525a.5.5 0 0 0 0 1H10.5a.5.5 0 0 0 .5-.5V6.525a.5.5 0 0 0-1 0v2.768z\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownRightCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownRightCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-down-right-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownRightCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-right-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.854 5.146a.5.5 0 1 0-.708.708L9.243 9.95H6.475a.5.5 0 1 0 0 1h3.975a.5.5 0 0 0 .5-.5V6.475a.5.5 0 1 0-1 0v2.768z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownRightCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownRightCircle;\n"
  },
  {
    "path": "src/icons/arrow-down-right-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownRightSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-right-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 16a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2zM5.904 5.197 10 9.293V6.525a.5.5 0 0 1 1 0V10.5a.5.5 0 0 1-.5.5H6.525a.5.5 0 0 1 0-1h2.768L5.197 5.904a.5.5 0 0 1 .707-.707\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownRightSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownRightSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-down-right-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownRightSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-right-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.854 3.146a.5.5 0 1 0-.708.708L9.243 9.95H6.475a.5.5 0 1 0 0 1h3.975a.5.5 0 0 0 .5-.5V6.475a.5.5 0 1 0-1 0v2.768z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownRightSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownRightSquare;\n"
  },
  {
    "path": "src/icons/arrow-down-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 13.5a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1 0-1h4.793L2.146 2.854a.5.5 0 1 1 .708-.708L13 12.293V7.5a.5.5 0 0 1 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownRight;\n"
  },
  {
    "path": "src/icons/arrow-down-short.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownShort = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-short', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownShort.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownShort;\n"
  },
  {
    "path": "src/icons/arrow-down-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.5 4.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nArrowDownSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-down-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm8.5 2.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownSquare;\n"
  },
  {
    "path": "src/icons/arrow-down-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDownUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5m-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDownUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDownUp;\n"
  },
  {
    "path": "src/icons/arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowDown;\n"
  },
  {
    "path": "src/icons/arrow-left-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z\" />\n      </svg>\n    );\n  },\n);\n\nArrowLeftCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-left-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowLeftCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftCircle;\n"
  },
  {
    "path": "src/icons/arrow-left-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 11.5a.5.5 0 0 0 .5.5h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 11H1.5a.5.5 0 0 0-.5.5m14-7a.5.5 0 0 1-.5.5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H14.5a.5.5 0 0 1 .5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowLeftRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftRight;\n"
  },
  {
    "path": "src/icons/arrow-left-short.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftShort = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-short', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowLeftShort.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftShort;\n"
  },
  {
    "path": "src/icons/arrow-left-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2zm-4.5-6.5H5.707l2.147-2.146a.5.5 0 1 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L5.707 8.5H11.5a.5.5 0 0 0 0-1\" />\n      </svg>\n    );\n  },\n);\n\nArrowLeftSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-left-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeftSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm11.5 5.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowLeftSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeftSquare;\n"
  },
  {
    "path": "src/icons/arrow-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-left', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowLeft;\n"
  },
  {
    "path": "src/icons/arrow-repeat.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRepeat = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-repeat', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41m-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5 5 0 0 0 8 3M3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowRepeat.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRepeat;\n"
  },
  {
    "path": "src/icons/arrow-return-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowReturnLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-return-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14.5 1.5a.5.5 0 0 1 .5.5v4.8a2.5 2.5 0 0 1-2.5 2.5H2.707l3.347 3.346a.5.5 0 0 1-.708.708l-4.2-4.2a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 8.3H12.5A1.5 1.5 0 0 0 14 6.8V2a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowReturnLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowReturnLeft;\n"
  },
  {
    "path": "src/icons/arrow-return-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowReturnRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-return-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowReturnRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowReturnRight;\n"
  },
  {
    "path": "src/icons/arrow-right-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRightCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z\" />\n      </svg>\n    );\n  },\n);\n\nArrowRightCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRightCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-right-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRightCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowRightCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRightCircle;\n"
  },
  {
    "path": "src/icons/arrow-right-short.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRightShort = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right-short', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowRightShort.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRightShort;\n"
  },
  {
    "path": "src/icons/arrow-right-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRightSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2zm4.5-6.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nArrowRightSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRightSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-right-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRightSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm4.5 5.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowRightSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRightSquare;\n"
  },
  {
    "path": "src/icons/arrow-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowRight;\n"
  },
  {
    "path": "src/icons/arrow-through-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowThroughHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-through-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.854 15.854A.5.5 0 0 1 2 15.5V14H.5a.5.5 0 0 1-.354-.854l1.5-1.5A.5.5 0 0 1 2 11.5h1.793l3.103-3.104a.5.5 0 1 1 .708.708L4.5 12.207V14a.5.5 0 0 1-.146.354zM16 3.5a.5.5 0 0 1-.854.354L14 2.707l-1.006 1.006c.236.248.44.531.6.845.562 1.096.585 2.517-.213 4.092-.793 1.563-2.395 3.288-5.105 5.08L8 13.912l-.276-.182A24 24 0 0 1 5.8 12.323L8.31 9.81a1.5 1.5 0 0 0-2.122-2.122L3.657 10.22a9 9 0 0 1-1.039-1.57c-.798-1.576-.775-2.997-.213-4.093C3.426 2.565 6.18 1.809 8 3.233c1.25-.98 2.944-.928 4.212-.152L13.292 2 12.147.854A.5.5 0 0 1 12.5 0h3a.5.5 0 0 1 .5.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowThroughHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowThroughHeartFill;\n"
  },
  {
    "path": "src/icons/arrow-through-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowThroughHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-through-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.854 15.854A.5.5 0 0 1 2 15.5V14H.5a.5.5 0 0 1-.354-.854l1.5-1.5A.5.5 0 0 1 2 11.5h1.793l.53-.53c-.771-.802-1.328-1.58-1.704-2.32-.798-1.575-.775-2.996-.213-4.092C3.426 2.565 6.18 1.809 8 3.233c1.25-.98 2.944-.928 4.212-.152L13.292 2 12.147.854A.5.5 0 0 1 12.5 0h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.854.354L14 2.707l-1.006 1.006c.236.248.44.531.6.845.562 1.096.585 2.517-.213 4.092-.793 1.563-2.395 3.288-5.105 5.08L8 13.912l-.276-.182a22 22 0 0 1-2.685-2.062l-.539.54V14a.5.5 0 0 1-.146.354zm2.893-4.894A20.4 20.4 0 0 0 8 12.71c2.456-1.666 3.827-3.207 4.489-4.512.679-1.34.607-2.42.215-3.185-.817-1.595-3.087-2.054-4.346-.761L8 4.62l-.358-.368c-1.259-1.293-3.53-.834-4.346.761-.392.766-.464 1.845.215 3.185.323.636.815 1.33 1.519 2.065l1.866-1.867a.5.5 0 1 1 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowThroughHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowThroughHeart;\n"
  },
  {
    "path": "src/icons/arrow-up-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-up-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpCircle;\n"
  },
  {
    "path": "src/icons/arrow-up-left-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpLeftCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-left-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5.904 2.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707z\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpLeftCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpLeftCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-up-left-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpLeftCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-left-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5.904 2.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpLeftCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpLeftCircle;\n"
  },
  {
    "path": "src/icons/arrow-up-left-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpLeftSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-left-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm8.096 10.803L6 6.707v2.768a.5.5 0 0 1-1 0V5.5a.5.5 0 0 1 .5-.5h3.975a.5.5 0 1 1 0 1H6.707l4.096 4.096a.5.5 0 1 1-.707.707\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpLeftSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpLeftSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-up-left-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpLeftSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-left-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm10.096 8.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpLeftSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpLeftSquare;\n"
  },
  {
    "path": "src/icons/arrow-up-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1H3.707l10.147 10.146a.5.5 0 0 1-.708.708L3 3.707V8.5a.5.5 0 0 1-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpLeft;\n"
  },
  {
    "path": "src/icons/arrow-up-right-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpRightCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-right-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a8 8 0 1 0 16 0A8 8 0 0 0 0 8m5.904 2.803a.5.5 0 1 1-.707-.707L9.293 6H6.525a.5.5 0 1 1 0-1H10.5a.5.5 0 0 1 .5.5v3.975a.5.5 0 0 1-1 0V6.707z\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpRightCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpRightCircleFill;\n"
  },
  {
    "path": "src/icons/arrow-up-right-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpRightCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-right-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.854 10.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpRightCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpRightCircle;\n"
  },
  {
    "path": "src/icons/arrow-up-right-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpRightSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-right-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zM5.904 10.803 10 6.707v2.768a.5.5 0 0 0 1 0V5.5a.5.5 0 0 0-.5-.5H6.525a.5.5 0 1 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 .707.707\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpRightSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpRightSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-up-right-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpRightSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-right-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.854 8.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpRightSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpRightSquare;\n"
  },
  {
    "path": "src/icons/arrow-up-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpRight;\n"
  },
  {
    "path": "src/icons/arrow-up-short.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpShort = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-short', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpShort.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpShort;\n"
  },
  {
    "path": "src/icons/arrow-up-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2zm6.5-4.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 1 0\" />\n      </svg>\n    );\n  },\n);\n\nArrowUpSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpSquareFill;\n"
  },
  {
    "path": "src/icons/arrow-up-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUpSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm8.5 9.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUpSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUpSquare;\n"
  },
  {
    "path": "src/icons/arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrow-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowUp;\n"
  },
  {
    "path": "src/icons/arrows-angle-contract.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsAngleContract = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-angle-contract', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.172 15.828a.5.5 0 0 0 .707 0l4.096-4.096V14.5a.5.5 0 1 0 1 0v-3.975a.5.5 0 0 0-.5-.5H1.5a.5.5 0 0 0 0 1h2.768L.172 15.121a.5.5 0 0 0 0 .707M15.828.172a.5.5 0 0 0-.707 0l-4.096 4.096V1.5a.5.5 0 1 0-1 0v3.975a.5.5 0 0 0 .5.5H14.5a.5.5 0 0 0 0-1h-2.768L15.828.879a.5.5 0 0 0 0-.707\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsAngleContract.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsAngleContract;\n"
  },
  {
    "path": "src/icons/arrows-angle-expand.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsAngleExpand = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-angle-expand', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.828 10.172a.5.5 0 0 0-.707 0l-4.096 4.096V11.5a.5.5 0 0 0-1 0v3.975a.5.5 0 0 0 .5.5H4.5a.5.5 0 0 0 0-1H1.732l4.096-4.096a.5.5 0 0 0 0-.707m4.344-4.344a.5.5 0 0 0 .707 0l4.096-4.096V4.5a.5.5 0 1 0 1 0V.525a.5.5 0 0 0-.5-.5H11.5a.5.5 0 0 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 0 .707\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsAngleExpand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsAngleExpand;\n"
  },
  {
    "path": "src/icons/arrows-collapse-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsCollapseVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-collapse-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5M0 8a.5.5 0 0 1 .5-.5h3.793L3.146 6.354a.5.5 0 1 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L4.293 8.5H.5A.5.5 0 0 1 0 8m11.707.5 1.147 1.146a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708l2-2a.5.5 0 0 1 .708.708L11.707 7.5H15.5a.5.5 0 0 1 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nArrowsCollapseVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsCollapseVertical;\n"
  },
  {
    "path": "src/icons/arrows-collapse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsCollapse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-collapse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8m7-8a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 4.293V.5A.5.5 0 0 1 8 0m-.5 11.707-1.146 1.147a.5.5 0 0 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 11.707V15.5a.5.5 0 0 1-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsCollapse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsCollapse;\n"
  },
  {
    "path": "src/icons/arrows-expand-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsExpandVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-expand-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5M.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L1.707 7.5H5.5a.5.5 0 0 1 0 1H1.707l1.147 1.146a.5.5 0 0 1-.708.708zM10 8a.5.5 0 0 1 .5-.5h3.793l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L14.293 8.5H10.5A.5.5 0 0 1 10 8\" />\n      </svg>\n    );\n  },\n);\n\nArrowsExpandVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsExpandVertical;\n"
  },
  {
    "path": "src/icons/arrows-expand.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsExpand = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-expand', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8M7.646.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 1.707V5.5a.5.5 0 0 1-1 0V1.707L6.354 2.854a.5.5 0 1 1-.708-.708zM8 10a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 14.293V10.5A.5.5 0 0 1 8 10\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsExpand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsExpand;\n"
  },
  {
    "path": "src/icons/arrows-fullscreen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsFullscreen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-fullscreen', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.828 10.172a.5.5 0 0 0-.707 0l-4.096 4.096V11.5a.5.5 0 0 0-1 0v3.975a.5.5 0 0 0 .5.5H4.5a.5.5 0 0 0 0-1H1.732l4.096-4.096a.5.5 0 0 0 0-.707m4.344 0a.5.5 0 0 1 .707 0l4.096 4.096V11.5a.5.5 0 1 1 1 0v3.975a.5.5 0 0 1-.5.5H11.5a.5.5 0 0 1 0-1h2.768l-4.096-4.096a.5.5 0 0 1 0-.707m0-4.344a.5.5 0 0 0 .707 0l4.096-4.096V4.5a.5.5 0 1 0 1 0V.525a.5.5 0 0 0-.5-.5H11.5a.5.5 0 0 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 0 .707m-4.344 0a.5.5 0 0 1-.707 0L1.025 1.732V4.5a.5.5 0 0 1-1 0V.525a.5.5 0 0 1 .5-.5H4.5a.5.5 0 0 1 0 1H1.732l4.096 4.096a.5.5 0 0 1 0 .707\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsFullscreen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsFullscreen;\n"
  },
  {
    "path": "src/icons/arrows-move.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsMove = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-move', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 1.707V5.5a.5.5 0 0 1-1 0V1.707L6.354 2.854a.5.5 0 1 1-.708-.708zM8 10a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 14.293V10.5A.5.5 0 0 1 8 10M.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L1.707 7.5H5.5a.5.5 0 0 1 0 1H1.707l1.147 1.146a.5.5 0 0 1-.708.708zM10 8a.5.5 0 0 1 .5-.5h3.793l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L14.293 8.5H10.5A.5.5 0 0 1 10 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nArrowsMove.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsMove;\n"
  },
  {
    "path": "src/icons/arrows-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ArrowsVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.354 14.854a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 13.293V2.707L6.354 3.854a.5.5 0 1 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 2.707v10.586l1.146-1.147a.5.5 0 0 1 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nArrowsVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ArrowsVertical;\n"
  },
  {
    "path": "src/icons/arrows.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Arrows = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-arrows', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L2.707 7.5h10.586l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L13.293 8.5H2.707l1.147 1.146a.5.5 0 0 1-.708.708z\" />\n      </svg>\n    );\n  },\n);\n\nArrows.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Arrows;\n"
  },
  {
    "path": "src/icons/aspect-ratio-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AspectRatioFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-aspect-ratio-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12.5v-9A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5M2.5 4a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0V5h2.5a.5.5 0 0 0 0-1zm11 8a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-1 0V11h-2.5a.5.5 0 0 0 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nAspectRatioFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AspectRatioFill;\n"
  },
  {
    "path": "src/icons/aspect-ratio.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AspectRatio = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-aspect-ratio', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3.5A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5zM1.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M2 4.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0zm12 7a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H13V8.5a.5.5 0 0 1 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nAspectRatio.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AspectRatio;\n"
  },
  {
    "path": "src/icons/asterisk.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Asterisk = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-asterisk', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a1 1 0 0 1 1 1v5.268l4.562-2.634a1 1 0 1 1 1 1.732L10 8l4.562 2.634a1 1 0 1 1-1 1.732L9 9.732V15a1 1 0 1 1-2 0V9.732l-4.562 2.634a1 1 0 1 1-1-1.732L6 8 1.438 5.366a1 1 0 0 1 1-1.732L7 6.268V1a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nAsterisk.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Asterisk;\n"
  },
  {
    "path": "src/icons/at.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst At = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-at', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.106 7.222c0-2.967-2.249-5.032-5.482-5.032-3.35 0-5.646 2.318-5.646 5.702 0 3.493 2.235 5.708 5.762 5.708.862 0 1.689-.123 2.304-.335v-.862c-.43.199-1.354.328-2.29.328-2.926 0-4.813-1.88-4.813-4.798 0-2.844 1.921-4.881 4.594-4.881 2.735 0 4.608 1.688 4.608 4.156 0 1.682-.554 2.769-1.416 2.769-.492 0-.772-.28-.772-.76V5.206H8.923v.834h-.11c-.266-.595-.881-.964-1.6-.964-1.4 0-2.378 1.162-2.378 2.823 0 1.737.957 2.906 2.379 2.906.8 0 1.415-.39 1.709-1.087h.11c.081.67.703 1.148 1.503 1.148 1.572 0 2.57-1.415 2.57-3.643zm-7.177.704c0-1.197.54-1.907 1.456-1.907.93 0 1.524.738 1.524 1.907S8.308 9.84 7.371 9.84c-.895 0-1.442-.725-1.442-1.914\" />\n      </svg>\n    );\n  },\n);\n\nAt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default At;\n"
  },
  {
    "path": "src/icons/award-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst AwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-award-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 0 1.669.864 1.858.282.842 1.68 1.337 1.32L13.4 6l.306 1.854-1.337 1.32-.842 1.68-1.858.282L8 12l-1.669-.864-1.858-.282-.842-1.68-1.337-1.32L2.6 6l-.306-1.854 1.337-1.32.842-1.68L6.331.864z\" />\n        <path d=\"M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1z\" />\n      </svg>\n    );\n  },\n);\n\nAwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default AwardFill;\n"
  },
  {
    "path": "src/icons/award.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Award = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-award', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.669.864 8 0 6.331.864l-1.858.282-.842 1.68-1.337 1.32L2.6 6l-.306 1.854 1.337 1.32.842 1.68 1.858.282L8 12l1.669-.864 1.858-.282.842-1.68 1.337-1.32L13.4 6l.306-1.854-1.337-1.32-.842-1.68zm1.196 1.193.684 1.365 1.086 1.072L12.387 6l.248 1.506-1.086 1.072-.684 1.365-1.51.229L8 10.874l-1.355-.702-1.51-.229-.684-1.365-1.086-1.072L3.614 6l-.25-1.506 1.087-1.072.684-1.365 1.51-.229L8 1.126l1.356.702z\" />\n        <path d=\"M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1z\" />\n      </svg>\n    );\n  },\n);\n\nAward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Award;\n"
  },
  {
    "path": "src/icons/back.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Back = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-back', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Back;\n"
  },
  {
    "path": "src/icons/backpack-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BackpackFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 13v-3h4v.5a.5.5 0 0 0 1 0V10h1v3z\" />\n        <path d=\"M6 2v.341C3.67 3.165 2 5.388 2 8v5.5A2.5 2.5 0 0 0 4.5 16h7a2.5 2.5 0 0 0 2.5-2.5V8a6 6 0 0 0-4-5.659V2a2 2 0 1 0-4 0m2-1a1 1 0 0 1 1 1v.083a6 6 0 0 0-2 0V2a1 1 0 0 1 1-1m0 3a4 4 0 0 1 3.96 3.43.5.5 0 1 1-.99.14 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.14A4 4 0 0 1 8 4M4.5 9h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBackpackFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BackpackFill;\n"
  },
  {
    "path": "src/icons/backpack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.04 7.43a4 4 0 0 1 7.92 0 .5.5 0 1 1-.99.14 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.14M4 9.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm1 .5v3h6v-3h-1v.5a.5.5 0 0 1-1 0V10z\" />\n        <path d=\"M6 2.341V2a2 2 0 1 1 4 0v.341c2.33.824 4 3.047 4 5.659v5.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5V8a6 6 0 0 1 4-5.659M7 2v.083a6 6 0 0 1 2 0V2a1 1 0 0 0-2 0m1 1a5 5 0 0 0-5 5v5.5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5V8a5 5 0 0 0-5-5\" />\n      </svg>\n    );\n  },\n);\n\nBackpack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack;\n"
  },
  {
    "path": "src/icons/backpack2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 13h6v-3h-1v.5a.5.5 0 0 1-1 0V10H5z\" />\n        <path d=\"M6 2v.341C3.67 3.165 2 5.388 2 8v1.191l-1.17.585A1.5 1.5 0 0 0 0 11.118V13.5A1.5 1.5 0 0 0 1.5 15h1c.456.607 1.182 1 2 1h7c.818 0 1.544-.393 2-1h1a1.5 1.5 0 0 0 1.5-1.5v-2.382a1.5 1.5 0 0 0-.83-1.342L14 9.191V8a6 6 0 0 0-4-5.659V2a2 2 0 1 0-4 0m2-1a1 1 0 0 1 1 1v.083a6 6 0 0 0-2 0V2a1 1 0 0 1 1-1m0 3a4 4 0 0 1 3.96 3.43.5.5 0 1 1-.99.14 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.14A4 4 0 0 1 8 4M4.5 9h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBackpack2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack2Fill;\n"
  },
  {
    "path": "src/icons/backpack2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.04 7.43a4 4 0 0 1 7.92 0 .5.5 0 1 1-.99.14 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.14\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 9.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm1 .5v3h6v-3h-1v.5a.5.5 0 0 1-1 0V10z\"\n        />\n        <path d=\"M6 2.341V2a2 2 0 1 1 4 0v.341c2.33.824 4 3.047 4 5.659v1.191l1.17.585a1.5 1.5 0 0 1 .83 1.342V13.5a1.5 1.5 0 0 1-1.5 1.5h-1c-.456.607-1.182 1-2 1h-7a2.5 2.5 0 0 1-2-1h-1A1.5 1.5 0 0 1 0 13.5v-2.382a1.5 1.5 0 0 1 .83-1.342L2 9.191V8a6 6 0 0 1 4-5.659M7 2v.083a6 6 0 0 1 2 0V2a1 1 0 0 0-2 0M3 13.5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5V8A5 5 0 0 0 3 8zm-1-3.19-.724.362a.5.5 0 0 0-.276.447V13.5a.5.5 0 0 0 .5.5H2zm12 0V14h.5a.5.5 0 0 0 .5-.5v-2.382a.5.5 0 0 0-.276-.447L14 10.309Z\" />\n      </svg>\n    );\n  },\n);\n\nBackpack2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack2;\n"
  },
  {
    "path": "src/icons/backpack3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 10v3h6v-3h-1v.5a.5.5 0 0 1-1 0V10z\" />\n        <path d=\"M6 2v.341a6 6 0 0 0-1.308.653l-.416-1.247a1 1 0 0 0-1.749-.284l-.77 1.027a1 1 0 0 0-.149.917l.803 2.407A6 6 0 0 0 2 8v5.5A2.5 2.5 0 0 0 4.5 16h7a2.5 2.5 0 0 0 2.5-2.5V8c0-.771-.146-1.509-.41-2.186l.801-2.407a1 1 0 0 0-.148-.917l-.77-1.027a1 1 0 0 0-1.75.284l-.415 1.247A6 6 0 0 0 10 2.34V2a2 2 0 1 0-4 0m1 0a1 1 0 0 1 2 0v.083a6 6 0 0 0-2 0zm5.941 2.595a6 6 0 0 0-.8-.937l.531-1.595.77 1.027zM3.86 3.658a6 6 0 0 0-.8.937L2.557 3.09l.77-1.027zm.18 3.772a4 4 0 0 1 7.92 0 .5.5 0 1 1-.99.142 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.142M4 9.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBackpack3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack3Fill;\n"
  },
  {
    "path": "src/icons/backpack3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.04 7.43a4 4 0 0 1 7.92 0 .5.5 0 1 1-.99.14 3 3 0 0 0-5.94 0 .5.5 0 1 1-.99-.14M4 9.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm1 .5v3h6v-3h-1v.5a.5.5 0 0 1-1 0V10z\" />\n        <path d=\"M6 2.341V2a2 2 0 1 1 4 0v.341c.465.165.904.385 1.308.653l.416-1.247a1 1 0 0 1 1.748-.284l.77 1.027a1 1 0 0 1 .15.917l-.803 2.407C13.854 6.49 14 7.229 14 8v5.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5V8c0-.771.146-1.509.41-2.186l-.802-2.407a1 1 0 0 1 .15-.917l.77-1.027a1 1 0 0 1 1.748.284l.416 1.247A6 6 0 0 1 6 2.34ZM7 2v.083a6 6 0 0 1 2 0V2a1 1 0 1 0-2 0m5.941 2.595.502-1.505-.77-1.027-.532 1.595q.447.427.8.937M3.86 3.658l-.532-1.595-.77 1.027.502 1.505q.352-.51.8-.937M8 3a5 5 0 0 0-5 5v5.5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5V8a5 5 0 0 0-5-5\" />\n      </svg>\n    );\n  },\n);\n\nBackpack3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack3;\n"
  },
  {
    "path": "src/icons/backpack4-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack4Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack4-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a2 2 0 0 0-2 2H3.5a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h4v.5a.5.5 0 0 0 1 0V7h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H10a2 2 0 0 0-2-2m1 2a1 1 0 0 0-2 0zm-4 9v2h6v-2h-1v.5a.5.5 0 0 1-1 0V11z\" />\n        <path d=\"M14 7.599A3 3 0 0 1 12.5 8H9.415a1.5 1.5 0 0 1-2.83 0H3.5A3 3 0 0 1 2 7.599V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2zM4 10.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBackpack4Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack4Fill;\n"
  },
  {
    "path": "src/icons/backpack4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backpack4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backpack4', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 9.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm1 .5v3h6v-3h-1v.5a.5.5 0 0 1-1 0V10z\" />\n        <path d=\"M8 0a2 2 0 0 0-2 2H3.5a2 2 0 0 0-2 2v1c0 .52.198.993.523 1.349A.5.5 0 0 0 2 6.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V6.5a.5.5 0 0 0-.023-.151c.325-.356.523-.83.523-1.349V4a2 2 0 0 0-2-2H10a2 2 0 0 0-2-2m0 1a1 1 0 0 0-1 1h2a1 1 0 0 0-1-1M3 14V6.937q.24.062.5.063h4v.5a.5.5 0 0 0 1 0V7h4q.26 0 .5-.063V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1m9.5-11a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBackpack4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backpack4;\n"
  },
  {
    "path": "src/icons/backspace-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BackspaceFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backspace-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.683 3a2 2 0 0 0-2-2h-7.08a2 2 0 0 0-1.519.698L.241 7.35a1 1 0 0 0 0 1.302l4.843 5.65A2 2 0 0 0 6.603 15h7.08a2 2 0 0 0 2-2zM5.829 5.854a.5.5 0 1 1 .707-.708l2.147 2.147 2.146-2.147a.5.5 0 1 1 .707.708L9.39 8l2.146 2.146a.5.5 0 0 1-.707.708L8.683 8.707l-2.147 2.147a.5.5 0 0 1-.707-.708L7.976 8z\" />\n      </svg>\n    );\n  },\n);\n\nBackspaceFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BackspaceFill;\n"
  },
  {
    "path": "src/icons/backspace-reverse-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BackspaceReverseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backspace-reverse-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a2 2 0 0 1 2-2h7.08a2 2 0 0 1 1.519.698l4.843 5.651a1 1 0 0 1 0 1.302L10.6 14.3a2 2 0 0 1-1.52.7H2a2 2 0 0 1-2-2zm9.854 2.854a.5.5 0 0 0-.708-.708L7 7.293 4.854 5.146a.5.5 0 1 0-.708.708L6.293 8l-2.147 2.146a.5.5 0 0 0 .708.708L7 8.707l2.146 2.147a.5.5 0 0 0 .708-.708L7.707 8z\" />\n      </svg>\n    );\n  },\n);\n\nBackspaceReverseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BackspaceReverseFill;\n"
  },
  {
    "path": "src/icons/backspace-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BackspaceReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backspace-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.854 5.146a.5.5 0 0 1 0 .708L7.707 8l2.147 2.146a.5.5 0 0 1-.708.708L7 8.707l-2.146 2.147a.5.5 0 0 1-.708-.708L6.293 8 4.146 5.854a.5.5 0 1 1 .708-.708L7 7.293l2.146-2.147a.5.5 0 0 1 .708 0\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.08a2 2 0 0 0 1.519-.698l4.843-5.651a1 1 0 0 0 0-1.302L10.6 1.7A2 2 0 0 0 9.08 1zm7.08 1a1 1 0 0 1 .76.35L14.682 8l-4.844 5.65a1 1 0 0 1-.759.35H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBackspaceReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BackspaceReverse;\n"
  },
  {
    "path": "src/icons/backspace.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Backspace = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-backspace', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.83 5.146a.5.5 0 0 0 0 .708L7.975 8l-2.147 2.146a.5.5 0 0 0 .707.708l2.147-2.147 2.146 2.147a.5.5 0 0 0 .707-.708L9.39 8l2.146-2.146a.5.5 0 0 0-.707-.708L8.683 7.293 6.536 5.146a.5.5 0 0 0-.707 0z\" />\n        <path d=\"M13.683 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-7.08a2 2 0 0 1-1.519-.698L.241 8.65a1 1 0 0 1 0-1.302L5.084 1.7A2 2 0 0 1 6.603 1zm-7.08 1a1 1 0 0 0-.76.35L1 8l4.844 5.65a1 1 0 0 0 .759.35h7.08a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBackspace.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Backspace;\n"
  },
  {
    "path": "src/icons/badge-3d-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge3dFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-3d-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.157 5.968h-.844v4.06h.844c1.116 0 1.621-.667 1.621-2.02 0-1.354-.51-2.04-1.621-2.04\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.184 4.368c.646 0 1.055.378 1.06.9.008.537-.427.919-1.086.919-.598-.004-1.037-.325-1.068-.756H3c.03.914.791 1.688 2.153 1.688 1.24 0 2.285-.66 2.272-1.798-.013-.953-.747-1.38-1.292-1.432v-.062c.44-.07 1.125-.527 1.108-1.375-.013-.906-.8-1.57-2.053-1.565-1.31.005-2.043.734-2.074 1.67h1.103c.022-.391.383-.751.936-.751.532 0 .928.33.928.813.004.479-.383.835-.928.835h-.632v.914zM8.126 11h2.189C12.125 11 13 9.893 13 7.985c0-1.894-.861-2.984-2.685-2.984H8.126z\" />\n      </svg>\n    );\n  },\n);\n\nBadge3dFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge3dFill;\n"
  },
  {
    "path": "src/icons/badge-3d.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge3d = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-3d', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.52 8.368h.664c.646 0 1.055.378 1.06.9.008.537-.427.919-1.086.919-.598-.004-1.037-.325-1.068-.756H3c.03.914.791 1.688 2.153 1.688 1.24 0 2.285-.66 2.272-1.798-.013-.953-.747-1.38-1.292-1.432v-.062c.44-.07 1.125-.527 1.108-1.375-.013-.906-.8-1.57-2.053-1.565-1.31.005-2.043.734-2.074 1.67h1.103c.022-.391.383-.751.936-.751.532 0 .928.33.928.813.004.479-.383.835-.928.835h-.632v.914zm3.606-3.367V11h2.189C12.125 11 13 9.893 13 7.985c0-1.894-.861-2.984-2.685-2.984zm1.187.967h.844c1.112 0 1.621.686 1.621 2.04 0 1.353-.505 2.02-1.621 2.02h-.844z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadge3d.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge3d;\n"
  },
  {
    "path": "src/icons/badge-4k-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge4kFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-4k-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.577 8.9v.03h1.828V5.898h-.062a47 47 0 0 0-1.766 3.001z\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm2.372 3.715.435-.714h1.71v3.93h.733v.957h-.733V11H5.405V9.888H2.5v-.971c.574-1.077 1.225-2.142 1.872-3.202m7.73-.714h1.306l-2.14 2.584L13.5 11h-1.428l-1.679-2.624-.615.7V11H8.59V5.001h1.187v2.686h.057L12.102 5z\" />\n      </svg>\n    );\n  },\n);\n\nBadge4kFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge4kFill;\n"
  },
  {
    "path": "src/icons/badge-4k.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge4k = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-4k', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.807 5.001C4.021 6.298 3.203 7.6 2.5 8.917v.971h2.905V11h1.112V9.888h.733V8.93h-.733V5.001zm-1.23 3.93v-.032a47 47 0 0 1 1.766-3.001h.062V8.93zm9.831-3.93h-1.306L9.835 7.687h-.057V5H8.59v6h1.187V9.075l.615-.699L12.072 11H13.5l-2.232-3.415z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadge4k.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge4k;\n"
  },
  {
    "path": "src/icons/badge-8k-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge8kFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-8k-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.9 6.605c0 .51.405.866.95.866s.945-.356.945-.866-.4-.852-.945-.852-.95.343-.95.852m-.192 2.668c0 .589.492.984 1.142.984.646 0 1.143-.395 1.143-.984S5.496 8.28 4.85 8.28c-.65 0-1.142.404-1.142.993\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm5.17 7.348c0 1.041-.927 1.766-2.333 1.766s-2.312-.72-2.312-1.762c0-.954.712-1.384 1.257-1.494v-.053c-.51-.154-1.02-.558-1.02-1.331 0-.914.831-1.587 2.088-1.587 1.253 0 2.083.673 2.083 1.587 0 .782-.523 1.182-1.02 1.331v.053c.545.11 1.257.545 1.257 1.49M12.102 5h1.306l-2.14 2.584 2.232 3.415h-1.428l-1.679-2.624-.615.699v1.925H8.59V5h1.187v2.685h.057z\" />\n      </svg>\n    );\n  },\n);\n\nBadge8kFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge8kFill;\n"
  },
  {
    "path": "src/icons/badge-8k.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Badge8k = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-8k', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.837 11.114c1.406 0 2.333-.725 2.333-1.766 0-.945-.712-1.38-1.256-1.49v-.053c.496-.15 1.02-.55 1.02-1.331 0-.914-.831-1.587-2.084-1.587-1.257 0-2.087.673-2.087 1.587 0 .773.51 1.177 1.02 1.331v.053c-.546.11-1.258.54-1.258 1.494 0 1.042.906 1.762 2.312 1.762m.013-3.643c-.545 0-.95-.356-.95-.866s.405-.852.95-.852.945.343.945.852c0 .51-.4.866-.945.866m0 2.786c-.65 0-1.142-.395-1.142-.984S4.2 8.28 4.85 8.28c.646 0 1.143.404 1.143.993s-.497.984-1.143.984M13.408 5h-1.306L9.835 7.685h-.057V5H8.59v5.998h1.187V9.075l.615-.699 1.679 2.623H13.5l-2.232-3.414z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadge8k.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Badge8k;\n"
  },
  {
    "path": "src/icons/badge-ad-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeAdFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-ad-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.35 8.337c0-.699-.42-1.138-1.001-1.138-.584 0-.954.444-.954 1.239v.453c0 .8.374 1.248.972 1.248.588 0 .984-.44.984-1.2zm-5.413.237-.734-2.426H5.15l-.734 2.426h1.52z\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm6.209 6.32c0-1.28.694-2.044 1.753-2.044.655 0 1.156.294 1.336.769h.053v-2.36h1.16V11h-1.138v-.747h-.057c-.145.474-.69.804-1.367.804-1.055 0-1.74-.764-1.74-2.043v-.695zm-4.04 1.138L3.7 11H2.5l2.013-5.999H5.9L7.905 11H6.644l-.47-1.542H4.17z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeAdFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeAdFill;\n"
  },
  {
    "path": "src/icons/badge-ad.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeAd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-ad', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.7 11 .47-1.542h2.004L6.644 11h1.261L5.901 5.001H4.513L2.5 11zm1.503-4.852.734 2.426H4.416l.734-2.426zm4.759.128c-1.059 0-1.753.765-1.753 2.043v.695c0 1.279.685 2.043 1.74 2.043.677 0 1.222-.33 1.367-.804h.057V11h1.138V4.685h-1.16v2.36h-.053c-.18-.475-.68-.77-1.336-.77zm.387.923c.58 0 1.002.44 1.002 1.138v.602c0 .76-.396 1.2-.984 1.2-.598 0-.972-.449-.972-1.248v-.453c0-.795.37-1.24.954-1.24z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeAd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeAd;\n"
  },
  {
    "path": "src/icons/badge-ar-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeArFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-ar-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m6.031 8.574-.734-2.426h-.052L4.51 8.574h1.52zm3.642-2.641v1.938h1.033c.66 0 1.068-.316 1.068-.95 0-.64-.422-.988-1.05-.988z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm4.265 5.458h2.004L6.739 11H8L5.996 5.001H4.607L2.595 11h1.2zM8.5 5v6h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeArFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeArFill;\n"
  },
  {
    "path": "src/icons/badge-ar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeAr = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-ar', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.794 11 .47-1.542H6.27L6.739 11H8L5.996 5.001H4.607L2.595 11zm1.503-4.852.734 2.426h-1.52l.734-2.426zm5.598-1.147H8.5V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9zm-1.222 2.87V5.933h1.05c.63 0 1.05.347 1.05.989 0 .633-.408.95-1.067.95z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeAr.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeAr;\n"
  },
  {
    "path": "src/icons/badge-cc-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeCcFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-cc-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm3.027 4.002c-.83 0-1.319.642-1.319 1.753v.743c0 1.107.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05H7.36v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747C2.5 6.051 3.414 5 5.018 5c1.318 0 2.29.813 2.342 2v.11H6.213c-.048-.638-.505-1.108-1.186-1.108m6.14 0c-.831 0-1.319.642-1.319 1.753v.743c0 1.107.48 1.727 1.318 1.727.69 0 1.139-.435 1.187-1.05H13.5v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.751 2.518-2.751 1.318 0 2.29.813 2.342 2v.11h-1.147c-.048-.638-.505-1.108-1.187-1.108z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeCcFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeCcFill;\n"
  },
  {
    "path": "src/icons/badge-cc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeCc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-cc', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.708 7.755c0-1.111.488-1.753 1.319-1.753.681 0 1.138.47 1.186 1.107H7.36V7c-.052-1.186-1.024-2-2.342-2C3.414 5 2.5 6.05 2.5 7.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114H6.213c-.048.615-.496 1.05-1.186 1.05-.84 0-1.319-.62-1.319-1.727zm6.14 0c0-1.111.488-1.753 1.318-1.753.682 0 1.139.47 1.187 1.107H13.5V7c-.053-1.186-1.024-2-2.342-2C9.554 5 8.64 6.05 8.64 7.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeCc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeCc;\n"
  },
  {
    "path": "src/icons/badge-hd-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeHdFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-hd-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.53 5.968h-.843v4.06h.843c1.117 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm5.396 3.001V11H6.209V8.43H3.687V11H2.5V5.001h1.187v2.44h2.522V5h1.187zM8.5 11V5.001h2.188c1.824 0 2.685 1.09 2.685 2.984C13.373 9.893 12.5 11 10.69 11z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeHdFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeHdFill;\n"
  },
  {
    "path": "src/icons/badge-hd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeHd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-hd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.396 11V5.001H6.209v2.44H3.687V5H2.5v6h1.187V8.43h2.522V11zM8.5 5.001V11h2.188c1.811 0 2.685-1.107 2.685-3.015 0-1.894-.86-2.984-2.684-2.984zm1.187.967h.843c1.112 0 1.622.686 1.622 2.04 0 1.353-.505 2.02-1.622 2.02h-.843z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeHd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeHd;\n"
  },
  {
    "path": "src/icons/badge-sd-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeSdFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-sd-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.338 5.968h-.844v4.06h.844c1.116 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.077 7.114c1.521 0 2.378-.764 2.378-1.88 0-1.007-.642-1.473-1.613-1.692l-.932-.216c-.527-.114-.821-.351-.821-.712 0-.466.39-.804 1.046-.804.637 0 1.028.33 1.103.76h1.125c-.058-.923-.849-1.692-2.22-1.692-1.322 0-2.24.717-2.24 1.815 0 .91.588 1.446 1.52 1.657l.927.215c.624.145.923.36.923.778 0 .492-.391.83-1.13.83-.707 0-1.155-.342-1.234-.808H2.762c.052.95.79 1.75 2.315 1.75ZM8.307 11h2.19c1.81 0 2.684-1.107 2.684-3.015 0-1.894-.861-2.984-2.685-2.984H8.308z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeSdFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeSdFill;\n"
  },
  {
    "path": "src/icons/badge-sd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeSd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-sd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.077 7.114c-1.524 0-2.263-.8-2.315-1.749h1.147c.079.466.527.809 1.234.809.739 0 1.13-.339 1.13-.83 0-.418-.3-.634-.923-.779l-.927-.215c-.932-.21-1.52-.747-1.52-1.657 0-1.098.918-1.815 2.24-1.815 1.371 0 2.162.77 2.22 1.692H6.238c-.075-.43-.466-.76-1.103-.76-.655 0-1.046.338-1.046.804 0 .36.294.598.821.712l.932.216c.971.22 1.613.685 1.613 1.691 0 1.117-.857 1.881-2.378 1.881M8.307 11V5.001h2.19c1.823 0 2.684 1.09 2.684 2.984 0 1.908-.874 3.015-2.685 3.015zm2.031-5.032h-.844v4.06h.844c1.116 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04\"\n        />\n      </svg>\n    );\n  },\n);\n\nBadgeSd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeSd;\n"
  },
  {
    "path": "src/icons/badge-tm-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeTmFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-tm-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm3.295 3.995V11H4.104V5.995h-1.7V5H7v.994H5.295zM8.692 7.01V11H7.633V5.001h1.209l1.71 3.894h.039l1.71-3.894H13.5V11h-1.072V7.01h-.057l-1.42 3.239h-.773L8.75 7.008h-.058z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeTmFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeTmFill;\n"
  },
  {
    "path": "src/icons/badge-tm.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeTm = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-tm', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.295 11V5.995H7V5H2.403v.994h1.701V11zm3.397 0V7.01h.058l1.428 3.239h.773l1.42-3.24h.057V11H13.5V5.001h-1.2l-1.71 3.894h-.039l-1.71-3.894H7.634V11h1.06z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeTm.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeTm;\n"
  },
  {
    "path": "src/icons/badge-vo-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeVoFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-vo-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.296 8.394v-.782c0-1.156-.571-1.736-1.362-1.736-.796 0-1.363.58-1.363 1.736v.782c0 1.156.567 1.732 1.363 1.732.79 0 1.362-.576 1.362-1.732\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm11.5 5.62v.77c0 1.691-.962 2.724-2.566 2.724S8.363 10.081 8.363 8.39v-.77c0-1.704.967-2.733 2.57-2.733 1.605 0 2.567 1.037 2.567 2.734zM5.937 11H4.508L2.5 5.001h1.375L5.22 9.708h.057L6.61 5.001h1.318z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeVoFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeVoFill;\n"
  },
  {
    "path": "src/icons/badge-vo.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeVo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-vo', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.508 11h1.429l1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5zM13.5 8.39v-.77c0-1.696-.962-2.733-2.566-2.733S8.363 5.916 8.363 7.621v.769c0 1.691.967 2.724 2.57 2.724 1.605 0 2.567-1.033 2.567-2.724m-1.204-.778v.782c0 1.156-.571 1.732-1.362 1.732-.796 0-1.363-.576-1.363-1.732v-.782c0-1.156.567-1.736 1.363-1.736.79 0 1.362.58 1.362 1.736\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeVo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeVo;\n"
  },
  {
    "path": "src/icons/badge-vr-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeVrFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-vr-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.673 5.933v1.938h1.033c.66 0 1.068-.316 1.068-.95 0-.64-.422-.988-1.05-.988z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.937 7 1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5L4.508 11zM8.5 5.001V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9H8.5z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeVrFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeVrFill;\n"
  },
  {
    "path": "src/icons/badge-vr.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeVr = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-vr', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n        <path d=\"M4.508 11h1.429l1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5zm6.387-5.999H8.5V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9zm-1.222 2.87V5.933h1.05c.63 0 1.05.347 1.05.989 0 .633-.408.95-1.067.95z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeVr.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeVr;\n"
  },
  {
    "path": "src/icons/badge-wc-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeWcFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-wc-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm11.666 1.89c.682 0 1.139.47 1.187 1.107H14v-.11c-.053-1.187-1.024-2-2.342-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727v-.742c0-1.112.488-1.754 1.318-1.754zm-6.188.926h.044L6.542 11h1.006L9 5.001H7.818l-.82 4.355h-.056L5.97 5.001h-.94l-.972 4.355h-.053l-.827-4.355H2L3.452 11h1.005z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeWcFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeWcFill;\n"
  },
  {
    "path": "src/icons/badge-wc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BadgeWc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-badge-wc', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.348 7.643c0-1.112.488-1.754 1.318-1.754.682 0 1.139.47 1.187 1.108H14v-.11c-.053-1.187-1.024-2-2.342-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727zM4.457 11l1.02-4.184h.045L6.542 11h1.006L9 5.001H7.818l-.82 4.355h-.056L5.97 5.001h-.94l-.972 4.355h-.053l-.827-4.355H2L3.452 11z\" />\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nBadgeWc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BadgeWc;\n"
  },
  {
    "path": "src/icons/bag-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0m-.646 5.354a.5.5 0 0 0-.708-.708L7.5 10.793 6.354 9.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBagCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagCheckFill;\n"
  },
  {
    "path": "src/icons/bag-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.854 8.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBagCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagCheck;\n"
  },
  {
    "path": "src/icons/bag-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0M6 9.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBagDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagDashFill;\n"
  },
  {
    "path": "src/icons/bag-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-dash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.5 10a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBagDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagDash;\n"
  },
  {
    "path": "src/icons/bag-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4z\" />\n      </svg>\n    );\n  },\n);\n\nBagFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagFill;\n"
  },
  {
    "path": "src/icons/bag-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 4v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m0 6.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nBagHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagHeartFill;\n"
  },
  {
    "path": "src/icons/bag-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-heart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0M14 14V5H2v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1M8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nBagHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagHeart;\n"
  },
  {
    "path": "src/icons/bag-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0M8.5 8a.5.5 0 0 0-1 0v1.5H6a.5.5 0 0 0 0 1h1.5V12a.5.5 0 0 0 1 0v-1.5H10a.5.5 0 0 0 0-1H8.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBagPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagPlusFill;\n"
  },
  {
    "path": "src/icons/bag-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 7.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V12a.5.5 0 0 1-1 0v-1.5H6a.5.5 0 0 1 0-1h1.5V8a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBagPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagPlus;\n"
  },
  {
    "path": "src/icons/bag-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-x-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0M6.854 8.146a.5.5 0 1 0-.708.708L7.293 10l-1.147 1.146a.5.5 0 0 0 .708.708L8 10.707l1.146 1.147a.5.5 0 0 0 .708-.708L8.707 10l1.147-1.146a.5.5 0 0 0-.708-.708L8 9.293z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBagXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagXFill;\n"
  },
  {
    "path": "src/icons/bag-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BagX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.146 8.146a.5.5 0 0 1 .708 0L8 9.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 10l1.147 1.146a.5.5 0 0 1-.708.708L8 10.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 10 6.146 8.854a.5.5 0 0 1 0-.708\"\n        />\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBagX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BagX;\n"
  },
  {
    "path": "src/icons/bag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bag', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bag;\n"
  },
  {
    "path": "src/icons/balloon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BalloonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-balloon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.48 10.901C11.211 10.227 13 7.837 13 5A5 5 0 0 0 3 5c0 2.837 1.789 5.227 4.52 5.901l-.244.487a.25.25 0 1 0 .448.224l.04-.08c.009.17.024.315.051.45.068.344.208.622.448 1.102l.013.028c.212.422.182.85.05 1.246-.135.402-.366.751-.534 1.003a.25.25 0 0 0 .416.278l.004-.007c.166-.248.431-.646.588-1.115.16-.479.212-1.051-.076-1.629-.258-.515-.365-.732-.419-1.004a2 2 0 0 1-.037-.289l.008.017a.25.25 0 1 0 .448-.224zM4.352 3.356a4 4 0 0 1 3.15-2.325C7.774.997 8 1.224 8 1.5s-.226.496-.498.542c-.95.162-1.749.78-2.173 1.617a.6.6 0 0 1-.52.341c-.346 0-.599-.329-.457-.644\"\n        />\n      </svg>\n    );\n  },\n);\n\nBalloonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BalloonFill;\n"
  },
  {
    "path": "src/icons/balloon-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BalloonHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-balloon-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.49 10.92C19.412 3.382 11.28-2.387 8 .986 4.719-2.387-3.413 3.382 7.51 10.92l-.234.468a.25.25 0 1 0 .448.224l.04-.08c.009.17.024.315.051.45.068.344.208.622.448 1.102l.013.028c.212.422.182.85.05 1.246-.135.402-.366.751-.534 1.003a.25.25 0 0 0 .416.278l.004-.007c.166-.248.431-.646.588-1.115.16-.479.212-1.051-.076-1.629-.258-.515-.365-.732-.419-1.004a2 2 0 0 1-.037-.289l.008.017a.25.25 0 1 0 .448-.224l-.235-.468ZM6.726 1.269c-1.167-.61-2.8-.142-3.454 1.135-.237.463-.36 1.08-.202 1.85.055.27.467.197.527-.071.285-1.256 1.177-2.462 2.989-2.528.234-.008.348-.278.14-.386\"\n        />\n      </svg>\n    );\n  },\n);\n\nBalloonHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BalloonHeartFill;\n"
  },
  {
    "path": "src/icons/balloon-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BalloonHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-balloon-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m8 2.42-.717-.737c-1.13-1.161-3.243-.777-4.01.72-.35.685-.451 1.707.236 3.062C4.16 6.753 5.52 8.32 8 10.042c2.479-1.723 3.839-3.29 4.491-4.577.687-1.355.587-2.377.236-3.061-.767-1.498-2.88-1.882-4.01-.721zm-.49 8.5c-10.78-7.44-3-13.155.359-10.063q.068.062.132.129.065-.067.132-.129c3.36-3.092 11.137 2.624.357 10.063l.235.468a.25.25 0 1 1-.448.224l-.008-.017c.008.11.02.202.037.29.054.27.161.488.419 1.003.288.578.235 1.15.076 1.629-.157.469-.422.867-.588 1.115l-.004.007a.25.25 0 1 1-.416-.278c.168-.252.4-.6.533-1.003.133-.396.163-.824-.049-1.246l-.013-.028c-.24-.48-.38-.758-.448-1.102a3 3 0 0 1-.052-.45l-.04.08a.25.25 0 1 1-.447-.224l.235-.468ZM6.013 2.06c-.649-.18-1.483.083-1.85.798-.131.258-.245.689-.08 1.335.063.244.414.198.487-.043.21-.697.627-1.447 1.359-1.692.217-.073.304-.337.084-.398\"\n        />\n      </svg>\n    );\n  },\n);\n\nBalloonHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BalloonHeart;\n"
  },
  {
    "path": "src/icons/balloon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Balloon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-balloon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 9.984C10.403 9.506 12 7.48 12 5a4 4 0 0 0-8 0c0 2.48 1.597 4.506 4 4.984M13 5c0 2.837-1.789 5.227-4.52 5.901l.244.487a.25.25 0 1 1-.448.224l-.008-.017c.008.11.02.202.037.29.054.27.161.488.419 1.003.288.578.235 1.15.076 1.629-.157.469-.422.867-.588 1.115l-.004.007a.25.25 0 1 1-.416-.278c.168-.252.4-.6.533-1.003.133-.396.163-.824-.049-1.246l-.013-.028c-.24-.48-.38-.758-.448-1.102a3 3 0 0 1-.052-.45l-.04.08a.25.25 0 1 1-.447-.224l.244-.487C4.789 10.227 3 7.837 3 5a5 5 0 0 1 10 0m-6.938-.495a2 2 0 0 1 1.443-1.443C7.773 2.994 8 2.776 8 2.5s-.226-.504-.498-.459a3 3 0 0 0-2.46 2.461c-.046.272.182.498.458.498s.494-.227.562-.495\"\n        />\n      </svg>\n    );\n  },\n);\n\nBalloon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Balloon;\n"
  },
  {
    "path": "src/icons/ban-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BanFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ban-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M2.71 12.584q.328.378.706.707l9.875-9.875a7 7 0 0 0-.707-.707l-9.875 9.875Z\" />\n      </svg>\n    );\n  },\n);\n\nBanFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BanFill;\n"
  },
  {
    "path": "src/icons/ban.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ban = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ban', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 8a6.97 6.97 0 0 0-1.71-4.584l-9.874 9.875A7 7 0 0 0 15 8M2.71 12.584l9.874-9.875a7 7 0 0 0-9.874 9.874ZM16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0\" />\n      </svg>\n    );\n  },\n);\n\nBan.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ban;\n"
  },
  {
    "path": "src/icons/bandaid-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BandaidFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bandaid-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m2.68 7.676 6.49-6.504a4 4 0 0 1 5.66 5.653l-1.477 1.529-5.006 5.006-1.523 1.472a4 4 0 0 1-5.653-5.66l.001-.002 1.505-1.492.001-.002Zm5.71-2.858a.5.5 0 1 0-.708.707.5.5 0 0 0 .707-.707ZM6.974 6.939a.5.5 0 1 0-.707-.707.5.5 0 0 0 .707.707M5.56 8.354a.5.5 0 1 0-.707-.708.5.5 0 0 0 .707.708m2.828 2.828a.5.5 0 1 0-.707-.707.5.5 0 0 0 .707.707m1.414-2.121a.5.5 0 1 0-.707.707.5.5 0 0 0 .707-.707m1.414-.707a.5.5 0 1 0-.706-.708.5.5 0 0 0 .707.708Zm-4.242.707a.5.5 0 1 0-.707.707.5.5 0 0 0 .707-.707m1.414-.707a.5.5 0 1 0-.707-.708.5.5 0 0 0 .707.708m1.414-2.122a.5.5 0 1 0-.707.707.5.5 0 0 0 .707-.707M8.646 3.354l4 4 .708-.708-4-4zm-1.292 9.292-4-4-.708.708 4 4z\" />\n      </svg>\n    );\n  },\n);\n\nBandaidFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BandaidFill;\n"
  },
  {
    "path": "src/icons/bandaid.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bandaid = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bandaid', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.121 1.879a3 3 0 0 0-4.242 0L8.733 3.026l4.261 4.26 1.127-1.165a3 3 0 0 0 0-4.242M12.293 8 8.027 3.734 3.738 8.031 8 12.293zm-5.006 4.994L3.03 8.737 1.879 9.88a3 3 0 0 0 4.241 4.24l.006-.006 1.16-1.121ZM2.679 7.676l6.492-6.504a4 4 0 0 1 5.66 5.653l-1.477 1.529-5.006 5.006-1.523 1.472a4 4 0 0 1-5.653-5.66l.001-.002 1.505-1.492z\" />\n        <path d=\"M5.56 7.646a.5.5 0 1 1-.706.708.5.5 0 0 1 .707-.708Zm1.415-1.414a.5.5 0 1 1-.707.707.5.5 0 0 1 .707-.707M8.39 4.818a.5.5 0 1 1-.708.707.5.5 0 0 1 .707-.707Zm0 5.657a.5.5 0 1 1-.708.707.5.5 0 0 1 .707-.707ZM9.803 9.06a.5.5 0 1 1-.707.708.5.5 0 0 1 .707-.707Zm1.414-1.414a.5.5 0 1 1-.706.708.5.5 0 0 1 .707-.708ZM6.975 9.06a.5.5 0 1 1-.707.708.5.5 0 0 1 .707-.707ZM8.39 7.646a.5.5 0 1 1-.708.708.5.5 0 0 1 .707-.708Zm1.413-1.414a.5.5 0 1 1-.707.707.5.5 0 0 1 .707-.707\" />\n      </svg>\n    );\n  },\n);\n\nBandaid.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bandaid;\n"
  },
  {
    "path": "src/icons/bank.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bank = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bank', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 0 6.61 3h.89a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H15v7a.5.5 0 0 1 .485.38l.5 2a.498.498 0 0 1-.485.62H.5a.498.498 0 0 1-.485-.62l.5-2A.5.5 0 0 1 1 13V6H.5a.5.5 0 0 1-.5-.5v-2A.5.5 0 0 1 .5 3h.89zM3.777 3h8.447L8 1zM2 6v7h1V6zm2 0v7h2.5V6zm3.5 0v7h1V6zm2 0v7H12V6zM13 6v7h1V6zm2-1V4H1v1zm-.39 9H1.39l-.25 1h13.72z\" />\n      </svg>\n    );\n  },\n);\n\nBank.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bank;\n"
  },
  {
    "path": "src/icons/bank2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bank2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bank2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.277.084a.5.5 0 0 0-.554 0l-7.5 5A.5.5 0 0 0 .5 6h1.875v7H1.5a.5.5 0 0 0 0 1h13a.5.5 0 1 0 0-1h-.875V6H15.5a.5.5 0 0 0 .277-.916zM12.375 6v7h-1.25V6zm-2.5 0v7h-1.25V6zm-2.5 0v7h-1.25V6zm-2.5 0v7h-1.25V6zM8 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2M.5 15a.5.5 0 0 0 0 1h15a.5.5 0 1 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nBank2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bank2;\n"
  },
  {
    "path": "src/icons/bar-chart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BarChartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bar-chart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBarChartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BarChartFill;\n"
  },
  {
    "path": "src/icons/bar-chart-line-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BarChartLineFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bar-chart-line-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1z\" />\n      </svg>\n    );\n  },\n);\n\nBarChartLineFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BarChartLineFill;\n"
  },
  {
    "path": "src/icons/bar-chart-line.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BarChartLine = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bar-chart-line', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1zm1 12h2V2h-2zm-3 0V7H7v7zm-5 0v-3H2v3z\" />\n      </svg>\n    );\n  },\n);\n\nBarChartLine.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BarChartLine;\n"
  },
  {
    "path": "src/icons/bar-chart-steps.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BarChartSteps = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bar-chart-steps', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 0a.5.5 0 0 1 .5.5v15a.5.5 0 0 1-1 0V.5A.5.5 0 0 1 .5 0M2 1.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm2 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBarChartSteps.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BarChartSteps;\n"
  },
  {
    "path": "src/icons/bar-chart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BarChart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bar-chart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 11H2v3h2zm5-4H7v7h2zm5-5v12h-2V2zm-2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM6 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm-5 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBarChart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BarChart;\n"
  },
  {
    "path": "src/icons/basket-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BasketFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.071 1.243a.5.5 0 0 1 .858.514L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15.5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H15v5a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9H.5a.5.5 0 0 1-.5-.5v-2A.5.5 0 0 1 .5 6h1.717zM3.5 10.5a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nBasketFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BasketFill;\n"
  },
  {
    "path": "src/icons/basket.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Basket = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v4.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5V9a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h1.217L5.07 1.243a.5.5 0 0 1 .686-.172zM2 9v4.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V9zM1 7v1h14V7zm3 3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 4 10m2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 6 10m2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 8 10m2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5m2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBasket.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Basket;\n"
  },
  {
    "path": "src/icons/basket2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Basket2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.929 1.757a.5.5 0 1 0-.858-.514L2.217 6H.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h.623l1.844 6.456A.75.75 0 0 0 3.69 15h8.622a.75.75 0 0 0 .722-.544L14.877 8h.623a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1.717L10.93 1.243a.5.5 0 1 0-.858.514L12.617 6H3.383zM4 10a1 1 0 0 1 2 0v2a1 1 0 1 1-2 0zm3 0a1 1 0 0 1 2 0v2a1 1 0 1 1-2 0zm4-1a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nBasket2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Basket2Fill;\n"
  },
  {
    "path": "src/icons/basket2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Basket2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 10a1 1 0 0 1 2 0v2a1 1 0 0 1-2 0zm3 0a1 1 0 0 1 2 0v2a1 1 0 0 1-2 0zm3 0a1 1 0 1 1 2 0v2a1 1 0 0 1-2 0z\" />\n        <path d=\"M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-.623l-1.844 6.456a.75.75 0 0 1-.722.544H3.69a.75.75 0 0 1-.722-.544L1.123 8H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 6h1.717L5.07 1.243a.5.5 0 0 1 .686-.172zM2.163 8l1.714 6h8.246l1.714-6z\" />\n      </svg>\n    );\n  },\n);\n\nBasket2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Basket2;\n"
  },
  {
    "path": "src/icons/basket3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Basket3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 6h1.717L5.07 1.243a.5.5 0 0 1 .686-.172zM2.468 15.426.943 9h14.114l-1.525 6.426a.75.75 0 0 1-.729.574H3.197a.75.75 0 0 1-.73-.574z\" />\n      </svg>\n    );\n  },\n);\n\nBasket3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Basket3Fill;\n"
  },
  {
    "path": "src/icons/basket3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Basket3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-basket3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 6h1.717L5.07 1.243a.5.5 0 0 1 .686-.172zM3.394 15l-1.48-6h-.97l1.525 6.426a.75.75 0 0 0 .729.574h9.606a.75.75 0 0 0 .73-.574L15.056 9h-.972l-1.479 6z\" />\n      </svg>\n    );\n  },\n);\n\nBasket3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Basket3;\n"
  },
  {
    "path": "src/icons/battery-charging.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BatteryCharging = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-battery-charging', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.585 2.568a.5.5 0 0 1 .226.58L8.677 6.832h1.99a.5.5 0 0 1 .364.843l-5.334 5.667a.5.5 0 0 1-.842-.49L5.99 9.167H4a.5.5 0 0 1-.364-.843l5.333-5.667a.5.5 0 0 1 .616-.09z\" />\n        <path d=\"M2 4h4.332l-.94 1H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2.38l-.308 1H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2\" />\n        <path d=\"M2 6h2.45L2.908 7.639A1.5 1.5 0 0 0 3.313 10H2zm8.595-2-.308 1H12a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H9.276l-.942 1H12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z\" />\n        <path d=\"M12 10h-1.783l1.542-1.639q.146-.156.241-.34zm0-3.354V6h-.646a1.5 1.5 0 0 1 .646.646M16 8a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8\" />\n      </svg>\n    );\n  },\n);\n\nBatteryCharging.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BatteryCharging;\n"
  },
  {
    "path": "src/icons/battery-full.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BatteryFull = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-battery-full', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6h10v4H2z\" />\n        <path d=\"M2 4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm10 1a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm4 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8\" />\n      </svg>\n    );\n  },\n);\n\nBatteryFull.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BatteryFull;\n"
  },
  {
    "path": "src/icons/battery-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BatteryHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-battery-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6h5v4H2z\" />\n        <path d=\"M2 4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm10 1a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm4 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8\" />\n      </svg>\n    );\n  },\n);\n\nBatteryHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BatteryHalf;\n"
  },
  {
    "path": "src/icons/battery-low.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BatteryLow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-battery-low', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6h2v4H2z\" />\n        <path d=\"M2 4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm10 1a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm4 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8\" />\n      </svg>\n    );\n  },\n);\n\nBatteryLow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BatteryLow;\n"
  },
  {
    "path": "src/icons/battery.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Battery = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-battery', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm14 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8\" />\n      </svg>\n    );\n  },\n);\n\nBattery.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Battery;\n"
  },
  {
    "path": "src/icons/beaker-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BeakerFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-beaker-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.575.006a.5.5 0 0 1 .327.79l-.048.058-.122.12A2.5 2.5 0 0 0 15 2.743V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V2.742a2.5 2.5 0 0 0-.566-1.584L.268.975.146.854A.5.5 0 0 1 .5 0h15zM11.5 13a.5.5 0 1 0 0 1H13v-1zm-2-2a.5.5 0 0 0 0 1H13v-1zm2-2a.5.5 0 1 0 0 1H13V9zm-2-2a.5.5 0 1 0 0 1H13V7zm2-2a.5.5 0 1 0 0 1H13V5zm-2-2a.5.5 0 1 0 0 1H13V3z\" />\n      </svg>\n    );\n  },\n);\n\nBeakerFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BeakerFill;\n"
  },
  {
    "path": "src/icons/beaker.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Beaker = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-beaker', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 3a.5.5 0 0 0 0 1H13V3zm2 2a.5.5 0 0 0 0 1H13V5zm-2 2a.5.5 0 0 0 0 1H13V7zm2 2a.5.5 0 0 0 0 1H13V9zm-2 2a.5.5 0 0 0 0 1H13v-1zm2 2a.5.5 0 0 0 0 1H13v-1z\" />\n        <path d=\"M.5 0a.5.5 0 0 0-.354.854l.122.12A2.5 2.5 0 0 1 1 2.744V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2.743a2.5 2.5 0 0 1 .732-1.768l.122-.121A.5.5 0 0 0 15.5 0zM2 2.743A3.5 3.5 0 0 0 1.535 1h12.93A3.5 3.5 0 0 0 14 2.743V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBeaker.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Beaker;\n"
  },
  {
    "path": "src/icons/behance.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Behance = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-behance', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.654 3c.461 0 .887.035 1.278.14.39.07.711.216.996.391s.497.426.641.747c.14.32.216.711.216 1.137 0 .496-.106.922-.356 1.242-.215.32-.566.606-.997.817.606.176 1.067.496 1.348.922s.461.957.461 1.563c0 .496-.105.922-.285 1.278a2.3 2.3 0 0 1-.782.887c-.32.215-.711.39-1.137.496a5.3 5.3 0 0 1-1.278.176L0 12.803V3zm-.285 3.978c.39 0 .71-.105.957-.285.246-.18.355-.497.355-.887 0-.216-.035-.426-.105-.567a1 1 0 0 0-.32-.355 1.8 1.8 0 0 0-.461-.176c-.176-.035-.356-.035-.567-.035H2.17v2.31c0-.005 2.2-.005 2.2-.005zm.105 4.193c.215 0 .426-.035.606-.07.176-.035.356-.106.496-.216s.25-.215.356-.39c.07-.176.14-.391.14-.641 0-.496-.14-.852-.426-1.102-.285-.215-.676-.32-1.137-.32H2.17v2.734h2.305zm6.858-.035q.428.427 1.278.426c.39 0 .746-.106 1.032-.286q.426-.32.53-.64h1.74c-.286.851-.712 1.457-1.278 1.848-.566.355-1.243.566-2.06.566a4.1 4.1 0 0 1-1.527-.285 2.8 2.8 0 0 1-1.137-.782 2.85 2.85 0 0 1-.712-1.172c-.175-.461-.25-.957-.25-1.528 0-.531.07-1.032.25-1.493.18-.46.426-.852.747-1.207.32-.32.711-.606 1.137-.782a4 4 0 0 1 1.493-.285c.606 0 1.137.105 1.598.355.46.25.817.532 1.102.958.285.39.496.851.641 1.348.07.496.105.996.07 1.563h-5.15c0 .58.21 1.11.496 1.396m2.24-3.732c-.25-.25-.642-.391-1.103-.391-.32 0-.566.07-.781.176s-.356.25-.496.39a.96.96 0 0 0-.25.497c-.036.175-.07.32-.07.46h3.196c-.07-.526-.25-.882-.497-1.132zm-3.127-3.728h3.978v.957h-3.978z\" />\n      </svg>\n    );\n  },\n);\n\nBehance.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Behance;\n"
  },
  {
    "path": "src/icons/bell-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BellFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bell-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2m.995-14.901a1 1 0 1 0-1.99 0A5 5 0 0 0 3 6c0 1.098-.5 6-2 7h14c-1.5-1-2-5.902-2-7 0-2.42-1.72-4.44-4.005-4.901\" />\n      </svg>\n    );\n  },\n);\n\nBellFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BellFill;\n"
  },
  {
    "path": "src/icons/bell-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BellSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bell-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.164 14H15c-1.5-1-2-5.902-2-7q0-.396-.06-.776zm6.288-10.617A5 5 0 0 0 8.995 2.1a1 1 0 1 0-1.99 0A5 5 0 0 0 3 7c0 .898-.335 4.342-1.278 6.113zM10 15a2 2 0 1 1-4 0zm-9.375.625a.53.53 0 0 0 .75.75l14.75-14.75a.53.53 0 0 0-.75-.75z\" />\n      </svg>\n    );\n  },\n);\n\nBellSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BellSlashFill;\n"
  },
  {
    "path": "src/icons/bell-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BellSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bell-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.164 14H15c-.299-.199-.557-.553-.78-1-.9-1.8-1.22-5.12-1.22-6q0-.396-.06-.776l-.938.938c.02.708.157 2.154.457 3.58.161.767.377 1.566.663 2.258H6.164zm5.581-9.91a4 4 0 0 0-1.948-1.01L8 2.917l-.797.161A4 4 0 0 0 4 7c0 .628-.134 2.197-.459 3.742q-.075.358-.166.718l-1.653 1.653q.03-.055.059-.113C2.679 11.2 3 7.88 3 7c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0c.942.19 1.788.645 2.457 1.284zM10 15a2 2 0 1 1-4 0zm-9.375.625a.53.53 0 0 0 .75.75l14.75-14.75a.53.53 0 0 0-.75-.75z\" />\n      </svg>\n    );\n  },\n);\n\nBellSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BellSlash;\n"
  },
  {
    "path": "src/icons/bell.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bell = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bell', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2M8 1.918l-.797.161A4 4 0 0 0 4 6c0 .628-.134 2.197-.459 3.742-.16.767-.376 1.566-.663 2.258h10.244c-.287-.692-.502-1.49-.663-2.258C12.134 8.197 12 6.628 12 6a4 4 0 0 0-3.203-3.92zM14.22 12c.223.447.481.801.78 1H1c.299-.199.557-.553.78-1C2.68 10.2 3 6.88 3 6c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0A5 5 0 0 1 13 6c0 .88.32 4.2 1.22 6\" />\n      </svg>\n    );\n  },\n);\n\nBell.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bell;\n"
  },
  {
    "path": "src/icons/bezier.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bezier = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bezier', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 10.5A1.5 1.5 0 0 1 1.5 9h1A1.5 1.5 0 0 1 4 10.5v1A1.5 1.5 0 0 1 2.5 13h-1A1.5 1.5 0 0 1 0 11.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm10.5.5A1.5 1.5 0 0 1 13.5 9h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM6 4.5A1.5 1.5 0 0 1 7.5 3h1A1.5 1.5 0 0 1 10 4.5v1A1.5 1.5 0 0 1 8.5 7h-1A1.5 1.5 0 0 1 6 5.5zM7.5 4a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\"\n        />\n        <path d=\"M6 4.5H1.866a1 1 0 1 0 0 1h2.668A6.52 6.52 0 0 0 1.814 9H2.5q.186 0 .358.043a5.52 5.52 0 0 1 3.185-3.185A1.5 1.5 0 0 1 6 5.5zm3.957 1.358A1.5 1.5 0 0 0 10 5.5v-1h4.134a1 1 0 1 1 0 1h-2.668a6.52 6.52 0 0 1 2.72 3.5H13.5q-.185 0-.358.043a5.52 5.52 0 0 0-3.185-3.185\" />\n      </svg>\n    );\n  },\n);\n\nBezier.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bezier;\n"
  },
  {
    "path": "src/icons/bezier2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bezier2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bezier2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 2.5A1.5 1.5 0 0 1 2.5 1h1A1.5 1.5 0 0 1 5 2.5h4.134a1 1 0 1 1 0 1h-2.01q.269.27.484.605C8.246 5.097 8.5 6.459 8.5 8c0 1.993.257 3.092.713 3.7.356.476.895.721 1.787.784A1.5 1.5 0 0 1 12.5 11h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5H6.866a1 1 0 1 1 0-1h1.711a3 3 0 0 1-.165-.2C7.743 11.407 7.5 10.007 7.5 8c0-1.46-.246-2.597-.733-3.355-.39-.605-.952-1-1.767-1.112A1.5 1.5 0 0 1 3.5 5h-1A1.5 1.5 0 0 1 1 3.5zM2.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm10 10a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBezier2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bezier2;\n"
  },
  {
    "path": "src/icons/bicycle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bicycle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bicycle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4.5a.5.5 0 0 1 .5-.5H6a.5.5 0 0 1 0 1v.5h4.14l.386-1.158A.5.5 0 0 1 11 4h1a.5.5 0 0 1 0 1h-.64l-.311.935.807 1.29a3 3 0 1 1-.848.53l-.508-.812-2.076 3.322A.5.5 0 0 1 8 10.5H5.959a3 3 0 1 1-1.815-3.274L5 5.856V5h-.5a.5.5 0 0 1-.5-.5m1.5 2.443-.508.814c.5.444.85 1.054.967 1.743h1.139zM8 9.057 9.598 6.5H6.402zM4.937 9.5a2 2 0 0 0-.487-.877l-.548.877zM3.603 8.092A2 2 0 1 0 4.937 10.5H3a.5.5 0 0 1-.424-.765zm7.947.53a2 2 0 1 0 .848-.53l1.026 1.643a.5.5 0 1 1-.848.53z\" />\n      </svg>\n    );\n  },\n);\n\nBicycle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bicycle;\n"
  },
  {
    "path": "src/icons/bing.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bing = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bing', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.35 5.046a.615.615 0 0 0-.54.575c-.009.13-.006.14.289.899.67 1.727.833 2.142.86 2.2q.101.215.277.395c.089.092.148.141.247.208.176.117.262.15.944.351.664.197 1.026.327 1.338.482.405.201.688.43.866.7.128.195.242.544.291.896.02.137.02.44 0 .564-.041.27-.124.495-.252.684-.067.1-.044.084.055-.039.278-.346.562-.938.707-1.475a4.42 4.42 0 0 0-2.14-5.028 70 70 0 0 0-.888-.465l-.53-.277-.353-.184c-.16-.082-.266-.138-.345-.18-.368-.192-.523-.27-.568-.283a1 1 0 0 0-.194-.03z\" />\n        <path d=\"M9.152 11.493a3 3 0 0 0-.135.083 320 320 0 0 0-1.513.934l-.8.496c-.012.01-.587.367-.876.543a1.9 1.9 0 0 1-.732.257c-.12.017-.349.017-.47 0a1.9 1.9 0 0 1-.884-.358 2.5 2.5 0 0 1-.365-.364 1.9 1.9 0 0 1-.34-.76 1 1 0 0 0-.027-.121c-.005-.006.004.092.022.22.018.132.057.324.098.489a4.1 4.1 0 0 0 2.487 2.796c.359.142.72.23 1.114.275.147.016.566.023.72.011a4.1 4.1 0 0 0 1.956-.661l.235-.149.394-.248.258-.163 1.164-.736c.51-.32.663-.433.9-.665.099-.097.248-.262.255-.283.002-.005.028-.046.059-.091a1.64 1.64 0 0 0 .25-.682c.02-.124.02-.427 0-.565a3 3 0 0 0-.213-.758c-.15-.314-.47-.6-.928-.83a2 2 0 0 0-.273-.12c-.006 0-.433.26-.948.58l-1.113.687z\" />\n        <path d=\"m3.004 12.184.03.129c.089.402.245.693.515.963a1.82 1.82 0 0 0 1.312.543c.361 0 .673-.09.994-.287l.472-.29.373-.23V5.334c0-1.537-.003-2.45-.008-2.521a1.82 1.82 0 0 0-.535-1.177c-.097-.096-.18-.16-.427-.33L4.183.24c-.239-.163-.258-.175-.33-.2a.63.63 0 0 0-.842.464c-.009.042-.01.603-.01 3.646l.003 8.035Z\" />\n      </svg>\n    );\n  },\n);\n\nBing.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bing;\n"
  },
  {
    "path": "src/icons/binoculars-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BinocularsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-binoculars-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 1A1.5 1.5 0 0 0 3 2.5V3h4v-.5A1.5 1.5 0 0 0 5.5 1zM7 4v1h2V4h4v.882a.5.5 0 0 0 .276.447l.895.447A1.5 1.5 0 0 1 15 7.118V13H9v-1.5a.5.5 0 0 1 .146-.354l.854-.853V9.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.793l.854.853A.5.5 0 0 1 7 11.5V13H1V7.118a1.5 1.5 0 0 1 .83-1.342l.894-.447A.5.5 0 0 0 3 4.882V4zM1 14v.5A1.5 1.5 0 0 0 2.5 16h3A1.5 1.5 0 0 0 7 14.5V14zm8 0v.5a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 1.5-1.5V14zm4-11H9v-.5A1.5 1.5 0 0 1 10.5 1h1A1.5 1.5 0 0 1 13 2.5z\" />\n      </svg>\n    );\n  },\n);\n\nBinocularsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BinocularsFill;\n"
  },
  {
    "path": "src/icons/binoculars.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Binoculars = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-binoculars', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2.5A1.5 1.5 0 0 1 4.5 1h1A1.5 1.5 0 0 1 7 2.5V5h2V2.5A1.5 1.5 0 0 1 10.5 1h1A1.5 1.5 0 0 1 13 2.5v2.382a.5.5 0 0 0 .276.447l.895.447A1.5 1.5 0 0 1 15 7.118V14.5a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 14.5v-3a.5.5 0 0 1 .146-.354l.854-.853V9.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.793l.854.853A.5.5 0 0 1 7 11.5v3A1.5 1.5 0 0 1 5.5 16h-3A1.5 1.5 0 0 1 1 14.5V7.118a1.5 1.5 0 0 1 .83-1.342l.894-.447A.5.5 0 0 0 3 4.882zM4.5 2a.5.5 0 0 0-.5.5V3h2v-.5a.5.5 0 0 0-.5-.5zM6 4H4v.882a1.5 1.5 0 0 1-.83 1.342l-.894.447A.5.5 0 0 0 2 7.118V13h4v-1.293l-.854-.853A.5.5 0 0 1 5 10.5v-1A1.5 1.5 0 0 1 6.5 8h3A1.5 1.5 0 0 1 11 9.5v1a.5.5 0 0 1-.146.354l-.854.853V13h4V7.118a.5.5 0 0 0-.276-.447l-.895-.447A1.5 1.5 0 0 1 12 4.882V4h-2v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5zm4-1h2v-.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5zm4 11h-4v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5zm-8 0H2v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBinoculars.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Binoculars;\n"
  },
  {
    "path": "src/icons/blockquote-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BlockquoteLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-blockquote-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1zm5 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm-5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1zm.79-5.373q.168-.117.444-.275L3.524 6q-.183.111-.452.287-.27.176-.51.428a2.4 2.4 0 0 0-.398.562Q2 7.587 2 7.969q0 .54.217.873.217.328.72.328.322 0 .504-.211a.7.7 0 0 0 .188-.463q0-.345-.211-.521-.205-.182-.568-.182h-.282q.036-.305.123-.498a1.4 1.4 0 0 1 .252-.37 2 2 0 0 1 .346-.298zm2.167 0q.17-.117.445-.275L5.692 6q-.183.111-.452.287-.27.176-.51.428a2.4 2.4 0 0 0-.398.562q-.165.31-.164.692 0 .54.217.873.217.328.72.328.322 0 .504-.211a.7.7 0 0 0 .188-.463q0-.345-.211-.521-.205-.182-.568-.182h-.282a1.8 1.8 0 0 1 .118-.492q.087-.194.257-.375a2 2 0 0 1 .346-.3z\" />\n      </svg>\n    );\n  },\n);\n\nBlockquoteLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BlockquoteLeft;\n"
  },
  {
    "path": "src/icons/blockquote-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BlockquoteRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-blockquote-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1zm10.113-5.373a7 7 0 0 0-.445-.275l.21-.352q.183.111.452.287.27.176.51.428.234.246.398.562.164.31.164.692 0 .54-.216.873-.217.328-.721.328-.322 0-.504-.211a.7.7 0 0 1-.188-.463q0-.345.211-.521.205-.182.569-.182h.281a1.7 1.7 0 0 0-.123-.498 1.4 1.4 0 0 0-.252-.37 2 2 0 0 0-.346-.298m-2.168 0A7 7 0 0 0 10 6.352L10.21 6q.183.111.452.287.27.176.51.428.234.246.398.562.164.31.164.692 0 .54-.216.873-.217.328-.721.328-.322 0-.504-.211a.7.7 0 0 1-.188-.463q0-.345.211-.521.206-.182.569-.182h.281a1.8 1.8 0 0 0-.117-.492 1.4 1.4 0 0 0-.258-.375 2 2 0 0 0-.346-.3z\" />\n      </svg>\n    );\n  },\n);\n\nBlockquoteRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BlockquoteRight;\n"
  },
  {
    "path": "src/icons/bluesky.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bluesky = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bluesky', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.468 1.948C5.303 3.325 7.276 6.118 8 7.616c.725-1.498 2.698-4.29 4.532-5.668C13.855.955 16 .186 16 2.632c0 .489-.28 4.105-.444 4.692-.572 2.04-2.653 2.561-4.504 2.246 3.236.551 4.06 2.375 2.281 4.2-3.376 3.464-4.852-.87-5.23-1.98-.07-.204-.103-.3-.103-.218 0-.081-.033.014-.102.218-.379 1.11-1.855 5.444-5.231 1.98-1.778-1.825-.955-3.65 2.28-4.2-1.85.315-3.932-.205-4.503-2.246C.28 6.737 0 3.12 0 2.632 0 .186 2.145.955 3.468 1.948\" />\n      </svg>\n    );\n  },\n);\n\nBluesky.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bluesky;\n"
  },
  {
    "path": "src/icons/bluetooth.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bluetooth = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bluetooth', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m8.543 3.948 1.316 1.316L8.543 6.58zm0 8.104 1.316-1.316L8.543 9.42zm-1.41-4.043L4.275 5.133l.827-.827L7.377 6.58V1.128l4.137 4.136L8.787 8.01l2.745 2.745-4.136 4.137V9.42l-2.294 2.274-.827-.827zM7.903 16c3.498 0 5.904-1.655 5.904-8.01 0-6.335-2.406-7.99-5.903-7.99S2 1.655 2 8.01C2 14.344 4.407 16 7.904 16Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBluetooth.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bluetooth;\n"
  },
  {
    "path": "src/icons/body-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BodyText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-body-text', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 .5A.5.5 0 0 1 .5 0h4a.5.5 0 0 1 0 1h-4A.5.5 0 0 1 0 .5m0 2A.5.5 0 0 1 .5 2h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m9 0a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m-9 2A.5.5 0 0 1 .5 4h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m5 0a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m-12 2A.5.5 0 0 1 .5 6h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m8 0a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m-8 2A.5.5 0 0 1 .5 8h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m7 0a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-7 2a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1h-8a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nBodyText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BodyText;\n"
  },
  {
    "path": "src/icons/book-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-book-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783\" />\n      </svg>\n    );\n  },\n);\n\nBookFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookFill;\n"
  },
  {
    "path": "src/icons/book-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-book-half', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783\" />\n      </svg>\n    );\n  },\n);\n\nBookHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookHalf;\n"
  },
  {
    "path": "src/icons/book.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Book = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-book', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783\" />\n      </svg>\n    );\n  },\n);\n\nBook.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Book;\n"
  },
  {
    "path": "src/icons/bookmark-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 15.5V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.74.439L8 13.069l-5.26 2.87A.5.5 0 0 1 2 15.5m8.854-9.646a.5.5 0 0 0-.708-.708L7.5 7.793 6.354 6.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBookmarkCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkCheckFill;\n"
  },
  {
    "path": "src/icons/bookmark-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkCheck;\n"
  },
  {
    "path": "src/icons/bookmark-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 15.5V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.74.439L8 13.069l-5.26 2.87A.5.5 0 0 1 2 15.5M6 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBookmarkDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkDashFill;\n"
  },
  {
    "path": "src/icons/bookmark-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.5 6.5A.5.5 0 0 1 6 6h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkDash;\n"
  },
  {
    "path": "src/icons/bookmark-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2v13.5a.5.5 0 0 0 .74.439L8 13.069l5.26 2.87A.5.5 0 0 0 14 15.5V2a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkFill;\n"
  },
  {
    "path": "src/icons/bookmark-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 15.5a.5.5 0 0 0 .74.439L8 13.069l5.26 2.87A.5.5 0 0 0 14 15.5V2a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2zM8 4.41c1.387-1.425 4.854 1.07 0 4.277C3.146 5.48 6.613 2.986 8 4.412z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkHeartFill;\n"
  },
  {
    "path": "src/icons/bookmark-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 4.41c1.387-1.425 4.854 1.07 0 4.277C3.146 5.48 6.613 2.986 8 4.412z\"\n        />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkHeart;\n"
  },
  {
    "path": "src/icons/bookmark-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 15.5V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.74.439L8 13.069l-5.26 2.87A.5.5 0 0 1 2 15.5m6.5-11a.5.5 0 0 0-1 0V6H6a.5.5 0 0 0 0 1h1.5v1.5a.5.5 0 0 0 1 0V7H10a.5.5 0 0 0 0-1H8.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBookmarkPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkPlusFill;\n"
  },
  {
    "path": "src/icons/bookmark-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n        <path d=\"M8 4a.5.5 0 0 1 .5.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5A.5.5 0 0 1 8 4\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkPlus;\n"
  },
  {
    "path": "src/icons/bookmark-star-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkStarFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-star-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 15.5V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.74.439L8 13.069l-5.26 2.87A.5.5 0 0 1 2 15.5M8.16 4.1a.178.178 0 0 0-.32 0l-.634 1.285a.18.18 0 0 1-.134.098l-1.42.206a.178.178 0 0 0-.098.303L6.58 6.993c.042.041.061.1.051.158L6.39 8.565a.178.178 0 0 0 .258.187l1.27-.668a.18.18 0 0 1 .165 0l1.27.668a.178.178 0 0 0 .257-.187L9.368 7.15a.18.18 0 0 1 .05-.158l1.028-1.001a.178.178 0 0 0-.098-.303l-1.42-.206a.18.18 0 0 1-.134-.098z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBookmarkStarFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkStarFill;\n"
  },
  {
    "path": "src/icons/bookmark-star.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkStar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-star', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.84 4.1a.178.178 0 0 1 .32 0l.634 1.285a.18.18 0 0 0 .134.098l1.42.206c.145.021.204.2.098.303L9.42 6.993a.18.18 0 0 0-.051.158l.242 1.414a.178.178 0 0 1-.258.187l-1.27-.668a.18.18 0 0 0-.165 0l-1.27.668a.178.178 0 0 1-.257-.187l.242-1.414a.18.18 0 0 0-.05-.158l-1.03-1.001a.178.178 0 0 1 .098-.303l1.42-.206a.18.18 0 0 0 .134-.098z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkStar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkStar;\n"
  },
  {
    "path": "src/icons/bookmark-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 15.5V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.74.439L8 13.069l-5.26 2.87A.5.5 0 0 1 2 15.5M6.854 5.146a.5.5 0 1 0-.708.708L7.293 7 6.146 8.146a.5.5 0 1 0 .708.708L8 7.707l1.146 1.147a.5.5 0 1 0 .708-.708L8.707 7l1.147-1.146a.5.5 0 0 0-.708-.708L8 6.293z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBookmarkXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkXFill;\n"
  },
  {
    "path": "src/icons/bookmark-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarkX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.146 5.146a.5.5 0 0 1 .708 0L8 6.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 7l1.147 1.146a.5.5 0 0 1-.708.708L8 7.707 6.854 8.854a.5.5 0 1 1-.708-.708L7.293 7 6.146 5.854a.5.5 0 0 1 0-.708\"\n        />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarkX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarkX;\n"
  },
  {
    "path": "src/icons/bookmark.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bookmark = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmark', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmark.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bookmark;\n"
  },
  {
    "path": "src/icons/bookmarks-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BookmarksFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmarks-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v11.5a.5.5 0 0 1-.777.416L7 13.101l-4.223 2.815A.5.5 0 0 1 2 15.5z\" />\n        <path d=\"M4.268 1A2 2 0 0 1 6 0h6a2 2 0 0 1 2 2v11.5a.5.5 0 0 1-.777.416L13 13.768V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nBookmarksFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BookmarksFill;\n"
  },
  {
    "path": "src/icons/bookmarks.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bookmarks = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookmarks', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v11.5a.5.5 0 0 1-.777.416L7 13.101l-4.223 2.815A.5.5 0 0 1 2 15.5zm2-1a1 1 0 0 0-1 1v10.566l3.723-2.482a.5.5 0 0 1 .554 0L11 14.566V4a1 1 0 0 0-1-1z\" />\n        <path d=\"M4.268 1H12a1 1 0 0 1 1 1v11.768l.223.148A.5.5 0 0 0 14 13.5V2a2 2 0 0 0-2-2H6a2 2 0 0 0-1.732 1\" />\n      </svg>\n    );\n  },\n);\n\nBookmarks.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bookmarks;\n"
  },
  {
    "path": "src/icons/bookshelf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bookshelf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bookshelf', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 0a.5.5 0 0 1 .5.5V2h10V.5a.5.5 0 0 1 1 0v15a.5.5 0 0 1-1 0V15H3v.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5M3 14h10v-3H3zm0-4h10V7H3zm0-4h10V3H3z\" />\n      </svg>\n    );\n  },\n);\n\nBookshelf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bookshelf;\n"
  },
  {
    "path": "src/icons/boombox-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoomboxFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-boombox-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0a.5.5 0 0 1 .5.5V2h.5a1 1 0 0 1 1 1v2H0V3a1 1 0 0 1 1-1h12.5V.5A.5.5 0 0 1 14 0M2 3.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m7.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1.5-.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0M9.5 3h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1M6 10.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m7 1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m.5-1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M0 6h16v8a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm2 4.5a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0m7 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0\" />\n      </svg>\n    );\n  },\n);\n\nBoomboxFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoomboxFill;\n"
  },
  {
    "path": "src/icons/boombox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Boombox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-boombox', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m7.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m-7-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm5.5 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M11.5 13a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m0-1a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M5 10.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M7 10.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0m-1 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n        <path d=\"M14 0a.5.5 0 0 1 .5.5V2h.5a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h12.5V.5A.5.5 0 0 1 14 0M1 3v3h14V3zm14 4H1v7h14z\" />\n      </svg>\n    );\n  },\n);\n\nBoombox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Boombox;\n"
  },
  {
    "path": "src/icons/bootstrap-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BootstrapFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bootstrap-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.375 7.125V4.658h1.78c.973 0 1.542.457 1.542 1.237 0 .802-.604 1.23-1.764 1.23zm0 3.762h1.898c1.184 0 1.81-.48 1.81-1.377 0-.885-.65-1.348-1.886-1.348H6.375z\" />\n        <path d=\"M4.002 0a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4zm1.06 12V3.545h3.399c1.587 0 2.543.809 2.543 2.11 0 .884-.65 1.675-1.483 1.816v.1c1.143.117 1.904.931 1.904 2.033 0 1.488-1.084 2.396-2.888 2.396z\" />\n      </svg>\n    );\n  },\n);\n\nBootstrapFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BootstrapFill;\n"
  },
  {
    "path": "src/icons/bootstrap-reboot.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BootstrapReboot = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bootstrap-reboot', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.161 8a6.84 6.84 0 1 0 6.842-6.84.58.58 0 1 1 0-1.16 8 8 0 1 1-6.556 3.412l-.663-.577a.58.58 0 0 1 .227-.997l2.52-.69a.58.58 0 0 1 .728.633l-.332 2.592a.58.58 0 0 1-.956.364l-.643-.56A6.8 6.8 0 0 0 1.16 8z\" />\n        <path d=\"M6.641 11.671V8.843h1.57l1.498 2.828h1.314L9.377 8.665c.897-.3 1.427-1.106 1.427-2.1 0-1.37-.943-2.246-2.456-2.246H5.5v7.352zm0-3.75V5.277h1.57c.881 0 1.416.499 1.416 1.32 0 .84-.504 1.324-1.386 1.324z\" />\n      </svg>\n    );\n  },\n);\n\nBootstrapReboot.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BootstrapReboot;\n"
  },
  {
    "path": "src/icons/bootstrap.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bootstrap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bootstrap', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.062 12h3.475c1.804 0 2.888-.908 2.888-2.396 0-1.102-.761-1.916-1.904-2.034v-.1c.832-.14 1.482-.93 1.482-1.816 0-1.3-.955-2.11-2.542-2.11H5.062zm1.313-4.875V4.658h1.78c.973 0 1.542.457 1.542 1.237 0 .802-.604 1.23-1.764 1.23zm0 3.762V8.162h1.822c1.236 0 1.887.463 1.887 1.348 0 .896-.627 1.377-1.811 1.377z\" />\n        <path d=\"M0 4a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4zm4-3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3z\" />\n      </svg>\n    );\n  },\n);\n\nBootstrap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bootstrap;\n"
  },
  {
    "path": "src/icons/border-all.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderAll = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-all', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 0h16v16H0zm1 1v6.5h6.5V1zm7.5 0v6.5H15V1zM15 8.5H8.5V15H15zM7.5 15V8.5H1V15z\" />\n      </svg>\n    );\n  },\n);\n\nBorderAll.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderAll;\n"
  },
  {
    "path": "src/icons/border-bottom.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderBottom = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-bottom', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.969 0H0v.969h.5V1h.469V.969H1V.5H.969zm.937 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469zM9.406 1h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031zM1 2.844v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5zm1.406 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5zm.937 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031zM0 9.406v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zM0 15h16v1H0z\" />\n      </svg>\n    );\n  },\n);\n\nBorderBottom.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderBottom;\n"
  },
  {
    "path": "src/icons/border-center.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderCenter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-center', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.969 0H0v.969h.5V1h.469V.969H1V.5H.969zm.937 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469zM9.406 1h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031zM1 2.844v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM0 8.5v-1h16v1zm0 .906v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0zm1.906 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469zm1.875.5h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469z\" />\n      </svg>\n    );\n  },\n);\n\nBorderCenter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderCenter;\n"
  },
  {
    "path": "src/icons/border-inner.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderInner = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-inner', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.969 0H0v.969h.5V1h.469V.969H1V.5H.969zm.937 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938z\" />\n        <path d=\"M8.5 7.5H16v1H8.5V16h-1V8.5H0v-1h7.5V0h1z\" />\n        <path d=\"M9.406 1h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031zM1 2.844v-.938H0v.938zm14-.938v.938h1v-.938zM1 4.719V3.78H0v.938h1zm14-.938v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm14-.938v.938h1v-.938zM0 9.406v.938h1v-.938zm16 .938v-.938h-1v.938zm-16 .937v.938h1v-.938zm16 .938v-.938h-1v.938zm-16 .937v.938h1v-.938zm16 .938v-.938h-1v.938zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0zm1.906 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm3.75 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469z\" />\n      </svg>\n    );\n  },\n);\n\nBorderInner.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderInner;\n"
  },
  {
    "path": "src/icons/border-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 0v16h1V0zm1.906 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469zM9.406 1h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031zM7.5 1.906v.938h1v-.938zm7.5 0v.938h1v-.938zM7.5 3.781v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM7.5 5.656v.938h1v-.938zm7.5 0v.938h1v-.938zM1.906 8.5h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5zm.937 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031zM7.5 9.406v.938h1v-.938zm8.5.938v-.938h-1v.938zm-8.5.937v.938h1v-.938zm8.5.938v-.938h-1v.938zm-8.5.937v.938h1v-.938zm8.5.938v-.938h-1v.938zM1.906 16h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469zm1.875.5h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469z\" />\n      </svg>\n    );\n  },\n);\n\nBorderLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderLeft;\n"
  },
  {
    "path": "src/icons/border-middle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderMiddle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-middle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.969 0H0v.969h.5V1h.469V.969H1V.5H.969zm.937 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938zM8.5 16h-1V0h1zm.906-15h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031zM1 2.844v-.938H0v.938zm14-.938v.938h1v-.938zM1 4.719V3.78H0v.938h1zm14-.938v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm14-.938v.938h1v-.938zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5zm1.406 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm3.75 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031zM0 9.406v.938h1v-.938zm16 .938v-.938h-1v.938zm-16 .937v.938h1v-.938zm16 .938v-.938h-1v.938zm-16 .937v.938h1v-.938zm16 .938v-.938h-1v.938zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0zm1.906 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm3.75 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469z\" />\n      </svg>\n    );\n  },\n);\n\nBorderMiddle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderMiddle;\n"
  },
  {
    "path": "src/icons/border-outer.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderOuter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-outer', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 1.906v.938h1v-.938zm0 1.875v.938h1V3.78h-1zm0 1.875v.938h1v-.938zM1.906 8.5h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5zm.937 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zM7.5 9.406v.938h1v-.938zm0 1.875v.938h1v-.938zm0 1.875v.938h1v-.938z\" />\n        <path d=\"M0 0v16h16V0zm1 1h14v14H1z\" />\n      </svg>\n    );\n  },\n);\n\nBorderOuter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderOuter;\n"
  },
  {
    "path": "src/icons/border-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.969 0H0v.969h.5V1h.469V.969H1V.5H.969zm.937 1h.938V0h-.938zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469zM9.406 1h.938V0h-.938zm1.875 0h.938V0h-.938zm1.875 0h.938V0h-.938zM16 0h-1v16h1zM1 2.844v-.938H0v.938zm6.5-.938v.938h1v-.938zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm6.5-.938v.938h1v-.938zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5zm1.406 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5zm.937 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zM0 9.406v.938h1v-.938zm7.5 0v.938h1v-.938zM0 11.281v.938h1v-.938zm7.5 0v.938h1v-.938zM0 13.156v.938h1v-.938zm7.5 0v.938h1v-.938zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0zm1.906 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469zm1.875.5h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938z\" />\n      </svg>\n    );\n  },\n);\n\nBorderRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderRight;\n"
  },
  {
    "path": "src/icons/border-style.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderStyle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-style', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm8 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-4 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm8 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-4-4a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBorderStyle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderStyle;\n"
  },
  {
    "path": "src/icons/border-top.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderTop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-top', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 0v1h16V0zm1 2.844v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM1 6.594v-.938H0v.938zm6.5-.938v.938h1v-.938zm7.5 0v.938h1v-.938zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5zm1.406 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5zm.937 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031zM0 9.406v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zm-16 .937v.938h1v-.938zm7.5 0v.938h1v-.938zm8.5.938v-.938h-1v.938zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0zm1.906 0h.938v-1h-.938zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469zm1.875.5h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875 0h.938v-1h-.938zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469z\" />\n      </svg>\n    );\n  },\n);\n\nBorderTop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderTop;\n"
  },
  {
    "path": "src/icons/border-width.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BorderWidth = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border-width', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3.5A.5.5 0 0 1 .5 3h15a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5zm0 5A.5.5 0 0 1 .5 8h15a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h15a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBorderWidth.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BorderWidth;\n"
  },
  {
    "path": "src/icons/border.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Border = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-border', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 0h.969v.5H1v.469H.969V1H.5V.969H0zm2.844 1h-.938V0h.938zm1.875 0H3.78V0h.938v1zm1.875 0h-.938V0h.938zm.937 0V.969H7.5V.5h.031V0h.938v.5H8.5v.469h-.031V1zm2.813 0h-.938V0h.938zm1.875 0h-.938V0h.938zm1.875 0h-.938V0h.938zM15.5 1h-.469V.969H15V.5h.031V0H16v.969h-.5zM1 1.906v.938H0v-.938zm6.5.938v-.938h1v.938zm7.5 0v-.938h1v.938zM1 3.78v.938H0V3.78zm6.5.938V3.78h1v.938zm7.5 0V3.78h1v.938zM1 5.656v.938H0v-.938zm6.5.938v-.938h1v.938zm7.5 0v-.938h1v.938zM.969 8.5H.5v-.031H0V7.53h.5V7.5h.469v.031H1v.938H.969zm1.875 0h-.938v-1h.938zm1.875 0H3.78v-1h.938v1zm1.875 0h-.938v-1h.938zm1.875-.031V8.5H7.53v-.031H7.5V7.53h.031V7.5h.938v.031H8.5v.938zm1.875.031h-.938v-1h.938zm1.875 0h-.938v-1h.938zm1.875 0h-.938v-1h.938zm1.406 0h-.469v-.031H15V7.53h.031V7.5h.469v.031h.5v.938h-.5zM0 10.344v-.938h1v.938zm7.5 0v-.938h1v.938zm8.5-.938v.938h-1v-.938zM0 12.22v-.938h1v.938zm7.5 0v-.938h1v.938zm8.5-.938v.938h-1v-.938zM0 14.094v-.938h1v.938zm7.5 0v-.938h1v.938zm8.5-.938v.938h-1v-.938zM.969 16H0v-.969h.5V15h.469v.031H1v.469H.969zm1.875 0h-.938v-1h.938zm1.875 0H3.78v-1h.938v1zm1.875 0h-.938v-1h.938zm.937 0v-.5H7.5v-.469h.031V15h.938v.031H8.5v.469h-.031v.5zm2.813 0h-.938v-1h.938zm1.875 0h-.938v-1h.938zm1.875 0h-.938v-1h.938zm.937 0v-.5H15v-.469h.031V15h.469v.031h.5V16z\" />\n      </svg>\n    );\n  },\n);\n\nBorder.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Border;\n"
  },
  {
    "path": "src/icons/bounding-box-circles.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoundingBoxCircles = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bounding-box-circles', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2M0 2a2 2 0 0 1 3.937-.5h8.126A2 2 0 1 1 14.5 3.937v8.126a2 2 0 1 1-2.437 2.437H3.937A2 2 0 1 1 1.5 12.063V3.937A2 2 0 0 1 0 2m2.5 1.937v8.126c.703.18 1.256.734 1.437 1.437h8.126a2 2 0 0 1 1.437-1.437V3.937A2 2 0 0 1 12.063 2.5H3.937A2 2 0 0 1 2.5 3.937M14 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2M2 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2m12 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nBoundingBoxCircles.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoundingBoxCircles;\n"
  },
  {
    "path": "src/icons/bounding-box.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoundingBox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bounding-box', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 2V0H0v5h2v6H0v5h5v-2h6v2h5v-5h-2V5h2V0h-5v2zm6 1v2h2v6h-2v2H5v-2H3V5h2V3zm1-2h3v3h-3zm3 11v3h-3v-3zM4 15H1v-3h3zM1 4V1h3v3z\" />\n      </svg>\n    );\n  },\n);\n\nBoundingBox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoundingBox;\n"
  },
  {
    "path": "src/icons/box-arrow-down-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowDownLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-down-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.364 12.5a.5.5 0 0 0 .5.5H14.5a1.5 1.5 0 0 0 1.5-1.5v-10A1.5 1.5 0 0 0 14.5 0h-10A1.5 1.5 0 0 0 3 1.5v6.636a.5.5 0 1 0 1 0V1.5a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-.5.5H7.864a.5.5 0 0 0-.5.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 15.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 0-1H1.707l8.147-8.146a.5.5 0 0 0-.708-.708L1 14.293V10.5a.5.5 0 0 0-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowDownLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowDownLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-down-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowDownRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-down-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.636 12.5a.5.5 0 0 1-.5.5H1.5A1.5 1.5 0 0 1 0 11.5v-10A1.5 1.5 0 0 1 1.5 0h10A1.5 1.5 0 0 1 13 1.5v6.636a.5.5 0 0 1-1 0V1.5a.5.5 0 0 0-.5-.5h-10a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h6.636a.5.5 0 0 1 .5.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 15.5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1 0-1h3.793L6.146 6.854a.5.5 0 1 1 .708-.708L15 14.293V10.5a.5.5 0 0 1 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowDownRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowDownRight;\n"
  },
  {
    "path": "src/icons/box-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.5 10a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2A1.5 1.5 0 0 0 14 9.5v-8A1.5 1.5 0 0 0 12.5 0h-9A1.5 1.5 0 0 0 2 1.5v8A1.5 1.5 0 0 0 3.5 11h2a.5.5 0 0 0 0-1z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 15.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 14.293V5.5a.5.5 0 0 0-1 0v8.793l-2.146-2.147a.5.5 0 0 0-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowDown;\n"
  },
  {
    "path": "src/icons/box-arrow-in-down-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInDownLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-down-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.636 2.5a.5.5 0 0 0-.5-.5H2.5A1.5 1.5 0 0 0 1 3.5v10A1.5 1.5 0 0 0 2.5 15h10a1.5 1.5 0 0 0 1.5-1.5V6.864a.5.5 0 0 0-1 0V13.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 10.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 0-1H6.707l8.147-8.146a.5.5 0 0 0-.708-.708L6 9.293V5.5a.5.5 0 0 0-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInDownLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInDownLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-in-down-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInDownRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-down-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.364 2.5a.5.5 0 0 1 .5-.5H13.5A1.5 1.5 0 0 1 15 3.5v10a1.5 1.5 0 0 1-1.5 1.5h-10A1.5 1.5 0 0 1 2 13.5V6.864a.5.5 0 1 1 1 0V13.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5v-10a.5.5 0 0 0-.5-.5H6.864a.5.5 0 0 1-.5-.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 10.5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1 0-1h3.793L1.146 1.854a.5.5 0 1 1 .708-.708L10 9.293V5.5a.5.5 0 0 1 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInDownRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInDownRight;\n"
  },
  {
    "path": "src/icons/box-arrow-in-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.5 6a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 1 0-1h2A1.5 1.5 0 0 1 14 6.5v8a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-8A1.5 1.5 0 0 1 3.5 5h2a.5.5 0 0 1 0 1z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInDown;\n"
  },
  {
    "path": "src/icons/box-arrow-in-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10 3.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 1 1 0v2A1.5 1.5 0 0 1 9.5 14h-8A1.5 1.5 0 0 1 0 12.5v-9A1.5 1.5 0 0 1 1.5 2h8A1.5 1.5 0 0 1 11 3.5v2a.5.5 0 0 1-1 0z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H14.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-in-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInRight;\n"
  },
  {
    "path": "src/icons/box-arrow-in-up-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInUpLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-up-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.636 13.5a.5.5 0 0 1-.5.5H2.5A1.5 1.5 0 0 1 1 12.5v-10A1.5 1.5 0 0 1 2.5 1h10A1.5 1.5 0 0 1 14 2.5v6.636a.5.5 0 0 1-1 0V2.5a.5.5 0 0 0-.5-.5h-10a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h6.636a.5.5 0 0 1 .5.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1H6.707l8.147 8.146a.5.5 0 0 1-.708.708L6 6.707V10.5a.5.5 0 0 1-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInUpLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInUpLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-in-up-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInUpRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-up-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.364 13.5a.5.5 0 0 0 .5.5H13.5a1.5 1.5 0 0 0 1.5-1.5v-10A1.5 1.5 0 0 0 13.5 1h-10A1.5 1.5 0 0 0 2 2.5v6.636a.5.5 0 1 0 1 0V2.5a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-.5.5H6.864a.5.5 0 0 0-.5.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 5.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793l-8.147 8.146a.5.5 0 0 0 .708.708L10 6.707V10.5a.5.5 0 0 0 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInUpRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInUpRight;\n"
  },
  {
    "path": "src/icons/box-arrow-in-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowInUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-in-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.5 10a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2A1.5 1.5 0 0 0 14 9.5v-8A1.5 1.5 0 0 0 12.5 0h-9A1.5 1.5 0 0 0 2 1.5v8A1.5 1.5 0 0 0 3.5 11h2a.5.5 0 0 0 0-1z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 4.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V14.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowInUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowInUp;\n"
  },
  {
    "path": "src/icons/box-arrow-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowRight;\n"
  },
  {
    "path": "src/icons/box-arrow-up-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowUpLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-up-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.364 3.5a.5.5 0 0 1 .5-.5H14.5A1.5 1.5 0 0 1 16 4.5v10a1.5 1.5 0 0 1-1.5 1.5h-10A1.5 1.5 0 0 1 3 14.5V7.864a.5.5 0 1 1 1 0V14.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5v-10a.5.5 0 0 0-.5-.5H7.864a.5.5 0 0 1-.5-.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 .5A.5.5 0 0 1 .5 0h5a.5.5 0 0 1 0 1H1.707l8.147 8.146a.5.5 0 0 1-.708.708L1 1.707V5.5a.5.5 0 0 1-1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowUpLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowUpLeft;\n"
  },
  {
    "path": "src/icons/box-arrow-up-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowUpRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-up-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowUpRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowUpRight;\n"
  },
  {
    "path": "src/icons/box-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.5 6a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 1 0-1h2A1.5 1.5 0 0 1 14 6.5v8a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-8A1.5 1.5 0 0 1 3.5 5h2a.5.5 0 0 1 0 1z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 1.707V10.5a.5.5 0 0 1-1 0V1.707L5.354 3.854a.5.5 0 1 1-.708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxArrowUp;\n"
  },
  {
    "path": "src/icons/box-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.528 2.973a.75.75 0 0 1 .472.696v8.662a.75.75 0 0 1-.472.696l-7.25 2.9a.75.75 0 0 1-.557 0l-7.25-2.9A.75.75 0 0 1 0 12.331V3.669a.75.75 0 0 1 .471-.696L7.443.184l.004-.001.274-.11a.75.75 0 0 1 .558 0l.274.11.004.001zm-1.374.527L8 5.962 1.846 3.5 1 3.839v.4l6.5 2.6v7.922l.5.2.5-.2V6.84l6.5-2.6v-.4l-.846-.339Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxFill;\n"
  },
  {
    "path": "src/icons/box-seam-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxSeamFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-seam-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.528 2.973a.75.75 0 0 1 .472.696v8.662a.75.75 0 0 1-.472.696l-7.25 2.9a.75.75 0 0 1-.557 0l-7.25-2.9A.75.75 0 0 1 0 12.331V3.669a.75.75 0 0 1 .471-.696L7.443.184l.01-.003.268-.108a.75.75 0 0 1 .558 0l.269.108.01.003zM10.404 2 4.25 4.461 1.846 3.5 1 3.839v.4l6.5 2.6v7.922l.5.2.5-.2V6.84l6.5-2.6v-.4l-.846-.339L8 5.961 5.596 5l6.154-2.461z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBoxSeamFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxSeamFill;\n"
  },
  {
    "path": "src/icons/box-seam.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BoxSeam = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box-seam', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2zm3.564 1.426L5.596 5 8 5.961 14.154 3.5zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464z\" />\n      </svg>\n    );\n  },\n);\n\nBoxSeam.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BoxSeam;\n"
  },
  {
    "path": "src/icons/box.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Box = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5 8 5.961 14.154 3.5zM15 4.239l-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464z\" />\n      </svg>\n    );\n  },\n);\n\nBox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Box;\n"
  },
  {
    "path": "src/icons/box2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Box2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box2-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.75 0a1 1 0 0 0-.8.4L.1 4.2a.5.5 0 0 0-.1.3V15a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4.5a.5.5 0 0 0-.1-.3L13.05.4a1 1 0 0 0-.8-.4zM15 4.667V5H1v-.333L1.5 4h6V1h1v3h6z\" />\n      </svg>\n    );\n  },\n);\n\nBox2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Box2Fill;\n"
  },
  {
    "path": "src/icons/box2-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Box2HeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box2-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.75 0a1 1 0 0 0-.8.4L.1 4.2a.5.5 0 0 0-.1.3V15a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4.5a.5.5 0 0 0-.1-.3L13.05.4a1 1 0 0 0-.8-.4zM8.5 4h6l.5.667V5H1v-.333L1.5 4h6V1h1zM8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nBox2HeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Box2HeartFill;\n"
  },
  {
    "path": "src/icons/box2-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Box2Heart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box2-heart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 7.982C9.664 6.309 13.825 9.236 8 13 2.175 9.236 6.336 6.31 8 7.982\" />\n        <path d=\"M3.75 0a1 1 0 0 0-.8.4L.1 4.2a.5.5 0 0 0-.1.3V15a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4.5a.5.5 0 0 0-.1-.3L13.05.4a1 1 0 0 0-.8-.4zm0 1H7.5v3h-6zM8.5 4V1h3.75l2.25 3zM15 5v10H1V5z\" />\n      </svg>\n    );\n  },\n);\n\nBox2Heart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Box2Heart;\n"
  },
  {
    "path": "src/icons/box2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Box2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-box2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.95.4a1 1 0 0 1 .8-.4h8.5a1 1 0 0 1 .8.4l2.85 3.8a.5.5 0 0 1 .1.3V15a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4.5a.5.5 0 0 1 .1-.3zM7.5 1H3.75L1.5 4h6zm1 0v3h6l-2.25-3zM15 5H1v10h14z\" />\n      </svg>\n    );\n  },\n);\n\nBox2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Box2;\n"
  },
  {
    "path": "src/icons/boxes.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Boxes = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-boxes', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.752.066a.5.5 0 0 1 .496 0l3.75 2.143a.5.5 0 0 1 .252.434v3.995l3.498 2A.5.5 0 0 1 16 9.07v4.286a.5.5 0 0 1-.252.434l-3.75 2.143a.5.5 0 0 1-.496 0l-3.502-2-3.502 2.001a.5.5 0 0 1-.496 0l-3.75-2.143A.5.5 0 0 1 0 13.357V9.071a.5.5 0 0 1 .252-.434L3.75 6.638V2.643a.5.5 0 0 1 .252-.434zM4.25 7.504 1.508 9.071l2.742 1.567 2.742-1.567zM7.5 9.933l-2.75 1.571v3.134l2.75-1.571zm1 3.134 2.75 1.571v-3.134L8.5 9.933zm.508-3.996 2.742 1.567 2.742-1.567-2.742-1.567zm2.242-2.433V3.504L8.5 5.076V8.21zM7.5 8.21V5.076L4.75 3.504v3.134zM5.258 2.643 8 4.21l2.742-1.567L8 1.076zM15 9.933l-2.75 1.571v3.134L15 13.067zM3.75 14.638v-3.134L1 9.933v3.134z\" />\n      </svg>\n    );\n  },\n);\n\nBoxes.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Boxes;\n"
  },
  {
    "path": "src/icons/braces-asterisk.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BracesAsterisk = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-braces-asterisk', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.114 8.063V7.9c1.005-.102 1.497-.615 1.497-1.6V4.503c0-1.094.39-1.538 1.354-1.538h.273V2h-.376C2.25 2 1.49 2.759 1.49 4.352v1.524c0 1.094-.376 1.456-1.49 1.456v1.299c1.114 0 1.49.362 1.49 1.456v1.524c0 1.593.759 2.352 2.372 2.352h.376v-.964h-.273c-.964 0-1.354-.444-1.354-1.538V9.663c0-.984-.492-1.497-1.497-1.6M14.886 7.9v.164c-1.005.103-1.497.616-1.497 1.6v1.798c0 1.094-.39 1.538-1.354 1.538h-.273v.964h.376c1.613 0 2.372-.759 2.372-2.352v-1.524c0-1.094.376-1.456 1.49-1.456v-1.3c-1.114 0-1.49-.362-1.49-1.456V4.352C14.51 2.759 13.75 2 12.138 2h-.376v.964h.273c.964 0 1.354.444 1.354 1.538V6.3c0 .984.492 1.497 1.497 1.6M7.5 11.5V9.207l-1.621 1.621-.707-.707L6.792 8.5H4.5v-1h2.293L5.172 5.879l.707-.707L7.5 6.792V4.5h1v2.293l1.621-1.621.707.707L9.208 7.5H11.5v1H9.207l1.621 1.621-.707.707L8.5 9.208V11.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nBracesAsterisk.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BracesAsterisk;\n"
  },
  {
    "path": "src/icons/braces.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Braces = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-braces', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.114 8.063V7.9c1.005-.102 1.497-.615 1.497-1.6V4.503c0-1.094.39-1.538 1.354-1.538h.273V2h-.376C3.25 2 2.49 2.759 2.49 4.352v1.524c0 1.094-.376 1.456-1.49 1.456v1.299c1.114 0 1.49.362 1.49 1.456v1.524c0 1.593.759 2.352 2.372 2.352h.376v-.964h-.273c-.964 0-1.354-.444-1.354-1.538V9.663c0-.984-.492-1.497-1.497-1.6M13.886 7.9v.163c-1.005.103-1.497.616-1.497 1.6v1.798c0 1.094-.39 1.538-1.354 1.538h-.273v.964h.376c1.613 0 2.372-.759 2.372-2.352v-1.524c0-1.094.376-1.456 1.49-1.456V7.332c-1.114 0-1.49-.362-1.49-1.456V4.352C13.51 2.759 12.75 2 11.138 2h-.376v.964h.273c.964 0 1.354.444 1.354 1.538V6.3c0 .984.492 1.497 1.497 1.6\" />\n      </svg>\n    );\n  },\n);\n\nBraces.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Braces;\n"
  },
  {
    "path": "src/icons/bricks.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bricks = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bricks', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 .5A.5.5 0 0 1 .5 0h15a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5H14v2h1.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5H14v2h1.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5H2v-2H.5a.5.5 0 0 1-.5-.5v-3A.5.5 0 0 1 .5 6H2V4H.5a.5.5 0 0 1-.5-.5zM3 4v2h4.5V4zm5.5 0v2H13V4zM3 10v2h4.5v-2zm5.5 0v2H13v-2zM1 1v2h3.5V1zm4.5 0v2h5V1zm6 0v2H15V1zM1 7v2h3.5V7zm4.5 0v2h5V7zm6 0v2H15V7zM1 13v2h3.5v-2zm4.5 0v2h5v-2zm6 0v2H15v-2z\" />\n      </svg>\n    );\n  },\n);\n\nBricks.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bricks;\n"
  },
  {
    "path": "src/icons/briefcase-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BriefcaseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-briefcase-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v1.384l7.614 2.03a1.5 1.5 0 0 0 .772 0L16 5.884V4.5A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M0 12.5A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V6.85L8.129 8.947a.5.5 0 0 1-.258 0L0 6.85z\" />\n      </svg>\n    );\n  },\n);\n\nBriefcaseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BriefcaseFill;\n"
  },
  {
    "path": "src/icons/briefcase.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Briefcase = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-briefcase', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v8A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-8A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5m1.886 6.914L15 7.151V12.5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5V7.15l6.614 1.764a1.5 1.5 0 0 0 .772 0M1.5 4h13a.5.5 0 0 1 .5.5v1.616L8.129 7.948a.5.5 0 0 1-.258 0L1 6.116V4.5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBriefcase.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Briefcase;\n"
  },
  {
    "path": "src/icons/brightness-alt-high-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessAltHighFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-alt-high-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 3m8 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5m-13.5.5a.5.5 0 0 0 0-1h-2a.5.5 0 0 0 0 1zm11.157-6.157a.5.5 0 0 1 0 .707l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m-9.9 2.121a.5.5 0 0 0 .707-.707L3.05 5.343a.5.5 0 1 0-.707.707zM8 7a4 4 0 0 0-4 4 .5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5 4 4 0 0 0-4-4\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessAltHighFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessAltHighFill;\n"
  },
  {
    "path": "src/icons/brightness-alt-high.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessAltHigh = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-alt-high', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 3m8 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5m-13.5.5a.5.5 0 0 0 0-1h-2a.5.5 0 0 0 0 1zm11.157-6.157a.5.5 0 0 1 0 .707l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m-9.9 2.121a.5.5 0 0 0 .707-.707L3.05 5.343a.5.5 0 1 0-.707.707zM8 7a4 4 0 0 0-4 4 .5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5 4 4 0 0 0-4-4m0 1a3 3 0 0 1 2.959 2.5H5.04A3 3 0 0 1 8 8\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessAltHigh.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessAltHigh;\n"
  },
  {
    "path": "src/icons/brightness-alt-low-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessAltLowFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-alt-low-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m5 6a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1M2 11a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m10.243-3.536a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m-8.486-.707a.5.5 0 1 0 .707.707.5.5 0 0 0-.707-.707M8 7a4 4 0 0 0-4 4 .5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5 4 4 0 0 0-4-4\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessAltLowFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessAltLowFill;\n"
  },
  {
    "path": "src/icons/brightness-alt-low.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessAltLow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-alt-low', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m5 6a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1M2 11a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m10.243-3.536a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m-8.486-.707a.5.5 0 1 0 .707.707.5.5 0 0 0-.707-.707M8 7a4 4 0 0 0-4 4 .5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5 4 4 0 0 0-4-4m0 1a3 3 0 0 1 2.959 2.5H5.04A3 3 0 0 1 8 8\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessAltLow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessAltLow;\n"
  },
  {
    "path": "src/icons/brightness-high-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessHighFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-high-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0M8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0m0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13m8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5M3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8m10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0m-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707M4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessHighFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessHighFill;\n"
  },
  {
    "path": "src/icons/brightness-high.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessHigh = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-high', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8M8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0m0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13m8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5M3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8m10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0m-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707M4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessHigh.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessHigh;\n"
  },
  {
    "path": "src/icons/brightness-low-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessLowFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-low-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0M8.5 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 11a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m5-5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m-11 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9.743-4.036a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m-7.779 7.779a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m7.072 0a.5.5 0 1 1 .707-.707.5.5 0 0 1-.707.707M3.757 4.464a.5.5 0 1 1 .707-.707.5.5 0 0 1-.707.707\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessLowFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessLowFill;\n"
  },
  {
    "path": "src/icons/brightness-low.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrightnessLow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brightness-low', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8m.5-9.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 11a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m5-5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m-11 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9.743-4.036a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m-7.779 7.779a.5.5 0 1 1-.707-.707.5.5 0 0 1 .707.707m7.072 0a.5.5 0 1 1 .707-.707.5.5 0 0 1-.707.707M3.757 4.464a.5.5 0 1 1 .707-.707.5.5 0 0 1-.707.707\" />\n      </svg>\n    );\n  },\n);\n\nBrightnessLow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrightnessLow;\n"
  },
  {
    "path": "src/icons/brilliance.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Brilliance = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brilliance', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M1 8a7 7 0 0 0 7 7 3.5 3.5 0 1 0 0-7 3.5 3.5 0 1 1 0-7 7 7 0 0 0-7 7\" />\n      </svg>\n    );\n  },\n);\n\nBrilliance.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Brilliance;\n"
  },
  {
    "path": "src/icons/broadcast-pin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BroadcastPin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-broadcast-pin', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 0 1 .707.707m2.122 2.122a4 4 0 0 0 0 5.656.5.5 0 1 1-.708.708 5 5 0 0 1 0-7.072.5.5 0 0 1 .708.708m5.656-.708a.5.5 0 0 1 .708 0 5 5 0 0 1 0 7.072.5.5 0 1 1-.708-.708 4 4 0 0 0 0-5.656.5.5 0 0 1 0-.708m2.122-2.12a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.313.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707zM6 8a2 2 0 1 1 2.5 1.937V15.5a.5.5 0 0 1-1 0V9.937A2 2 0 0 1 6 8\" />\n      </svg>\n    );\n  },\n);\n\nBroadcastPin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BroadcastPin;\n"
  },
  {
    "path": "src/icons/broadcast.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Broadcast = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-broadcast', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 0 1 .707.707m2.122 2.122a4 4 0 0 0 0 5.656.5.5 0 1 1-.708.708 5 5 0 0 1 0-7.072.5.5 0 0 1 .708.708m5.656-.708a.5.5 0 0 1 .708 0 5 5 0 0 1 0 7.072.5.5 0 1 1-.708-.708 4 4 0 0 0 0-5.656.5.5 0 0 1 0-.708m2.122-2.12a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.313.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707zM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nBroadcast.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Broadcast;\n"
  },
  {
    "path": "src/icons/browser-chrome.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrowserChrome = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-browser-chrome', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 8a8 8 0 0 1-7.022 7.94l1.902-7.098a3 3 0 0 0 .05-1.492A3 3 0 0 0 10.237 6h5.511A8 8 0 0 1 16 8M0 8a8 8 0 0 0 7.927 8l1.426-5.321a3 3 0 0 1-.723.255 3 3 0 0 1-1.743-.147 3 3 0 0 1-1.043-.7L.633 4.876A8 8 0 0 0 0 8m5.004-.167L1.108 3.936A8.003 8.003 0 0 1 15.418 5H8.066a3 3 0 0 0-1.252.243 2.99 2.99 0 0 0-1.81 2.59M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4\"\n        />\n      </svg>\n    );\n  },\n);\n\nBrowserChrome.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrowserChrome;\n"
  },
  {
    "path": "src/icons/browser-edge.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrowserEdge = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-browser-edge', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.482 9.341c-.069.062-.17.153-.17.309 0 .162.107.325.3.456.877.613 2.521.54 2.592.538h.002c.667 0 1.32-.18 1.894-.519A3.84 3.84 0 0 0 16 6.819c.018-1.316-.44-2.218-.666-2.664l-.04-.08C13.963 1.487 11.106 0 8 0A8 8 0 0 0 .473 5.29C1.488 4.048 3.183 3.262 5 3.262c2.83 0 5.01 1.885 5.01 4.797h-.004v.002c0 .338-.168.832-.487 1.244l.006-.006z\" />\n        <path d=\"M.01 7.753a8.14 8.14 0 0 0 .753 3.641 8 8 0 0 0 6.495 4.564 5 5 0 0 1-.785-.377h-.01l-.12-.075a5.5 5.5 0 0 1-1.56-1.463A5.543 5.543 0 0 1 6.81 5.8l.01-.004.025-.012c.208-.098.62-.292 1.167-.285q.194.001.384.033a4 4 0 0 0-.993-.698l-.01-.005C6.348 4.282 5.199 4.263 5 4.263c-2.44 0-4.824 1.634-4.99 3.49m10.263 7.912q.133-.04.265-.084-.153.047-.307.086z\" />\n        <path d=\"M10.228 15.667a5 5 0 0 0 .303-.086l.082-.025a8.02 8.02 0 0 0 4.162-3.3.25.25 0 0 0-.331-.35q-.322.168-.663.294a6.4 6.4 0 0 1-2.243.4c-2.957 0-5.532-2.031-5.532-4.644q.003-.203.046-.399a4.54 4.54 0 0 0-.46 5.898l.003.005c.315.441.707.821 1.158 1.121h.003l.144.09c.877.55 1.721 1.078 3.328.996\" />\n      </svg>\n    );\n  },\n);\n\nBrowserEdge.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrowserEdge;\n"
  },
  {
    "path": "src/icons/browser-firefox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrowserFirefox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-browser-firefox', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.384 3.408c.535.276 1.22 1.152 1.556 1.963a8 8 0 0 1 .503 3.897l-.009.077-.026.224A7.758 7.758 0 0 1 .006 8.257v-.04q.025-.545.114-1.082c.01-.074.075-.42.09-.489l.01-.051a6.6 6.6 0 0 1 1.041-2.35q.327-.465.725-.87.35-.358.758-.65a1.5 1.5 0 0 1 .26-.137c-.018.268-.04 1.553.268 1.943h.003a5.7 5.7 0 0 1 1.868-1.443 3.6 3.6 0 0 0 .021 1.896q.105.07.2.152c.107.09.226.207.454.433l.068.066.009.009a2 2 0 0 0 .213.18c.383.287.943.563 1.306.741.201.1.342.168.359.193l.004.008c-.012.193-.695.858-.933.858-2.206 0-2.564 1.335-2.564 1.335.087.997.714 1.839 1.517 2.357a4 4 0 0 0 .439.241q.114.05.228.094c.325.115.665.18 1.01.194 3.043.143 4.155-2.804 3.129-4.745v-.001a3 3 0 0 0-.731-.9 3 3 0 0 0-.571-.37l-.003-.002a2.68 2.68 0 0 1 1.87.454 3.92 3.92 0 0 0-3.396-1.983q-.116.001-.23.01l-.042.003V4.31h-.002a4 4 0 0 0-.8.14 7 7 0 0 0-.333-.314 2 2 0 0 0-.2-.152 4 4 0 0 1-.088-.383 5 5 0 0 1 1.352-.289l.05-.003c.052-.004.125-.01.205-.012C7.996 2.212 8.733.843 10.17.002l-.003.005.003-.001.002-.002h.002l.002-.002h.015a.02.02 0 0 1 .012.007 2.4 2.4 0 0 0 .206.48q.09.153.183.297c.49.774 1.023 1.379 1.543 1.968.771.874 1.512 1.715 2.036 3.02l-.001-.013a8 8 0 0 0-.786-2.353\" />\n      </svg>\n    );\n  },\n);\n\nBrowserFirefox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrowserFirefox;\n"
  },
  {
    "path": "src/icons/browser-safari.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrowserSafari = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-browser-safari', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.25-14.75v1.5a.25.25 0 0 1-.5 0v-1.5a.25.25 0 0 1 .5 0m0 12v1.5a.25.25 0 1 1-.5 0v-1.5a.25.25 0 1 1 .5 0M4.5 1.938a.25.25 0 0 1 .342.091l.75 1.3a.25.25 0 0 1-.434.25l-.75-1.3a.25.25 0 0 1 .092-.341m6 10.392a.25.25 0 0 1 .341.092l.75 1.299a.25.25 0 1 1-.432.25l-.75-1.3a.25.25 0 0 1 .091-.34ZM2.28 4.408l1.298.75a.25.25 0 0 1-.25.434l-1.299-.75a.25.25 0 0 1 .25-.434Zm10.392 6 1.299.75a.25.25 0 1 1-.25.434l-1.3-.75a.25.25 0 0 1 .25-.434ZM1 8a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 0 .5h-1.5A.25.25 0 0 1 1 8m12 0a.25.25 0 0 1 .25-.25h1.5a.25.25 0 1 1 0 .5h-1.5A.25.25 0 0 1 13 8M2.03 11.159l1.298-.75a.25.25 0 0 1 .25.432l-1.299.75a.25.25 0 0 1-.25-.432Zm10.392-6 1.299-.75a.25.25 0 1 1 .25.433l-1.3.75a.25.25 0 0 1-.25-.434ZM4.5 14.061a.25.25 0 0 1-.092-.341l.75-1.3a.25.25 0 0 1 .434.25l-.75 1.3a.25.25 0 0 1-.342.091m6-10.392a.25.25 0 0 1-.091-.342l.75-1.299a.25.25 0 1 1 .432.25l-.75 1.3a.25.25 0 0 1-.341.09ZM6.494 1.415l.13.483a.25.25 0 1 1-.483.13l-.13-.483a.25.25 0 0 1 .483-.13M9.86 13.972l.13.483a.25.25 0 1 1-.483.13l-.13-.483a.25.25 0 0 1 .483-.13M3.05 3.05a.25.25 0 0 1 .354 0l.353.354a.25.25 0 0 1-.353.353l-.354-.353a.25.25 0 0 1 0-.354m9.193 9.193a.25.25 0 0 1 .353 0l.354.353a.25.25 0 1 1-.354.354l-.353-.354a.25.25 0 0 1 0-.353M1.545 6.01l.483.13a.25.25 0 1 1-.13.483l-.483-.13a.25.25 0 1 1 .13-.482Zm12.557 3.365.483.13a.25.25 0 1 1-.13.483l-.483-.13a.25.25 0 1 1 .13-.483m-12.863.436a.25.25 0 0 1 .176-.306l.483-.13a.25.25 0 1 1 .13.483l-.483.13a.25.25 0 0 1-.306-.177m12.557-3.365a.25.25 0 0 1 .176-.306l.483-.13a.25.25 0 1 1 .13.483l-.483.13a.25.25 0 0 1-.306-.177M3.045 12.944a.3.3 0 0 1-.029-.376l3.898-5.592a.3.3 0 0 1 .062-.062l5.602-3.884a.278.278 0 0 1 .392.392L9.086 9.024a.3.3 0 0 1-.062.062l-5.592 3.898a.3.3 0 0 1-.382-.034zm3.143 1.817a.25.25 0 0 1-.176-.306l.129-.483a.25.25 0 0 1 .483.13l-.13.483a.25.25 0 0 1-.306.176M9.553 2.204a.25.25 0 0 1-.177-.306l.13-.483a.25.25 0 1 1 .483.13l-.13.483a.25.25 0 0 1-.306.176\" />\n      </svg>\n    );\n  },\n);\n\nBrowserSafari.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrowserSafari;\n"
  },
  {
    "path": "src/icons/brush-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BrushFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brush-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.825.12a.5.5 0 0 1 .132.584c-1.53 3.43-4.743 8.17-7.095 10.64a6.1 6.1 0 0 1-2.373 1.534c-.018.227-.06.538-.16.868-.201.659-.667 1.479-1.708 1.74a8.1 8.1 0 0 1-3.078.132 4 4 0 0 1-.562-.135 1.4 1.4 0 0 1-.466-.247.7.7 0 0 1-.204-.288.62.62 0 0 1 .004-.443c.095-.245.316-.38.461-.452.394-.197.625-.453.867-.826.095-.144.184-.297.287-.472l.117-.198c.151-.255.326-.54.546-.848.528-.739 1.201-.925 1.746-.896q.19.012.348.048c.062-.172.142-.38.238-.608.261-.619.658-1.419 1.187-2.069 2.176-2.67 6.18-6.206 9.117-8.104a.5.5 0 0 1 .596.04\" />\n      </svg>\n    );\n  },\n);\n\nBrushFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BrushFill;\n"
  },
  {
    "path": "src/icons/brush.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Brush = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-brush', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.825.12a.5.5 0 0 1 .132.584c-1.53 3.43-4.743 8.17-7.095 10.64a6.1 6.1 0 0 1-2.373 1.534c-.018.227-.06.538-.16.868-.201.659-.667 1.479-1.708 1.74a8.1 8.1 0 0 1-3.078.132 4 4 0 0 1-.562-.135 1.4 1.4 0 0 1-.466-.247.7.7 0 0 1-.204-.288.62.62 0 0 1 .004-.443c.095-.245.316-.38.461-.452.394-.197.625-.453.867-.826.095-.144.184-.297.287-.472l.117-.198c.151-.255.326-.54.546-.848.528-.739 1.201-.925 1.746-.896q.19.012.348.048c.062-.172.142-.38.238-.608.261-.619.658-1.419 1.187-2.069 2.176-2.67 6.18-6.206 9.117-8.104a.5.5 0 0 1 .596.04M4.705 11.912a1.2 1.2 0 0 0-.419-.1c-.246-.013-.573.05-.879.479-.197.275-.355.532-.5.777l-.105.177c-.106.181-.213.362-.32.528a3.4 3.4 0 0 1-.76.861c.69.112 1.736.111 2.657-.12.559-.139.843-.569.993-1.06a3 3 0 0 0 .126-.75zm1.44.026c.12-.04.277-.1.458-.183a5.1 5.1 0 0 0 1.535-1.1c1.9-1.996 4.412-5.57 6.052-8.631-2.59 1.927-5.566 4.66-7.302 6.792-.442.543-.795 1.243-1.042 1.826-.121.288-.214.54-.275.72v.001l.575.575zm-4.973 3.04.007-.005zm3.582-3.043.002.001h-.002z\" />\n      </svg>\n    );\n  },\n);\n\nBrush.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Brush;\n"
  },
  {
    "path": "src/icons/bucket-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BucketFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bucket-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.522 5H2a.5.5 0 0 0-.494.574l1.372 9.149A1.5 1.5 0 0 0 4.36 16h7.278a1.5 1.5 0 0 0 1.483-1.277l1.373-9.149A.5.5 0 0 0 14 5h-.522A5.5 5.5 0 0 0 2.522 5m1.005 0a4.5 4.5 0 0 1 8.945 0z\" />\n      </svg>\n    );\n  },\n);\n\nBucketFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BucketFill;\n"
  },
  {
    "path": "src/icons/bucket.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bucket = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bucket', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.522 5H2a.5.5 0 0 0-.494.574l1.372 9.149A1.5 1.5 0 0 0 4.36 16h7.278a1.5 1.5 0 0 0 1.483-1.277l1.373-9.149A.5.5 0 0 0 14 5h-.522A5.5 5.5 0 0 0 2.522 5m1.005 0a4.5 4.5 0 0 1 8.945 0zm9.892 1-1.286 8.574a.5.5 0 0 1-.494.426H4.36a.5.5 0 0 1-.494-.426L2.58 6h10.838z\" />\n      </svg>\n    );\n  },\n);\n\nBucket.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bucket;\n"
  },
  {
    "path": "src/icons/bug-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BugFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bug-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.978.855a.5.5 0 1 0-.956.29l.41 1.352A5 5 0 0 0 3 6h10a5 5 0 0 0-1.432-3.503l.41-1.352a.5.5 0 1 0-.956-.29l-.291.956A5 5 0 0 0 8 1a5 5 0 0 0-2.731.811l-.29-.956z\" />\n        <path d=\"M13 6v1H8.5v8.975A5 5 0 0 0 13 11h.5a.5.5 0 0 1 .5.5v.5a.5.5 0 1 0 1 0v-.5a1.5 1.5 0 0 0-1.5-1.5H13V9h1.5a.5.5 0 0 0 0-1H13V7h.5A1.5 1.5 0 0 0 15 5.5V5a.5.5 0 0 0-1 0v.5a.5.5 0 0 1-.5.5zm-5.5 9.975V7H3V6h-.5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 0-1 0v.5A1.5 1.5 0 0 0 2.5 7H3v1H1.5a.5.5 0 0 0 0 1H3v1h-.5A1.5 1.5 0 0 0 1 11.5v.5a.5.5 0 1 0 1 0v-.5a.5.5 0 0 1 .5-.5H3a5 5 0 0 0 4.5 4.975\" />\n      </svg>\n    );\n  },\n);\n\nBugFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BugFill;\n"
  },
  {
    "path": "src/icons/bug.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bug = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bug', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.355.522a.5.5 0 0 1 .623.333l.291.956A5 5 0 0 1 8 1c1.007 0 1.946.298 2.731.811l.29-.956a.5.5 0 1 1 .957.29l-.41 1.352A5 5 0 0 1 13 6h.5a.5.5 0 0 0 .5-.5V5a.5.5 0 0 1 1 0v.5A1.5 1.5 0 0 1 13.5 7H13v1h1.5a.5.5 0 0 1 0 1H13v1h.5a1.5 1.5 0 0 1 1.5 1.5v.5a.5.5 0 1 1-1 0v-.5a.5.5 0 0 0-.5-.5H13a5 5 0 0 1-10 0h-.5a.5.5 0 0 0-.5.5v.5a.5.5 0 1 1-1 0v-.5A1.5 1.5 0 0 1 2.5 10H3V9H1.5a.5.5 0 0 1 0-1H3V7h-.5A1.5 1.5 0 0 1 1 5.5V5a.5.5 0 0 1 1 0v.5a.5.5 0 0 0 .5.5H3c0-1.364.547-2.601 1.432-3.503l-.41-1.352a.5.5 0 0 1 .333-.623M4 7v4a4 4 0 0 0 3.5 3.97V7zm4.5 0v7.97A4 4 0 0 0 12 11V7zM12 6a4 4 0 0 0-1.334-2.982A3.98 3.98 0 0 0 8 2a3.98 3.98 0 0 0-2.667 1.018A4 4 0 0 0 4 6z\" />\n      </svg>\n    );\n  },\n);\n\nBug.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bug;\n"
  },
  {
    "path": "src/icons/building-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-add', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingAdd;\n"
  },
  {
    "path": "src/icons/building-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingCheck;\n"
  },
  {
    "path": "src/icons/building-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingDash;\n"
  },
  {
    "path": "src/icons/building-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingDown;\n"
  },
  {
    "path": "src/icons/building-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm8.5 4.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nBuildingExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingExclamation;\n"
  },
  {
    "path": "src/icons/building-fill-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-add', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillAdd;\n"
  },
  {
    "path": "src/icons/building-fill-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillCheck;\n"
  },
  {
    "path": "src/icons/building-fill-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillDash;\n"
  },
  {
    "path": "src/icons/building-fill-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillDown;\n"
  },
  {
    "path": "src/icons/building-fill-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillExclamation;\n"
  },
  {
    "path": "src/icons/building-fill-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M11.886 9.46c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillGear;\n"
  },
  {
    "path": "src/icons/building-fill-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.764a3 3 0 0 0-4.989 2.497 2 2 0 0 0-.743.739H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5\" />\n        <path d=\"M9 13a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillLock;\n"
  },
  {
    "path": "src/icons/building-fill-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95Z\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillSlash;\n"
  },
  {
    "path": "src/icons/building-fill-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillUp;\n"
  },
  {
    "path": "src/icons/building-fill-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFillX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7.256A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-3.59 1.787A.5.5 0 0 0 9 9.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .39-.187A4.5 4.5 0 0 0 8.027 12H6.5a.5.5 0 0 0-.5.5V16H3a1 1 0 0 1-1-1zm2 1.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3 0v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFillX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFillX;\n"
  },
  {
    "path": "src/icons/building-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3v-3.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V16h3a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm1 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5M4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5m2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5m2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nBuildingFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingFill;\n"
  },
  {
    "path": "src/icons/building-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.386 1.46c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nBuildingGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingGear;\n"
  },
  {
    "path": "src/icons/building-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM9 13a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nBuildingLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingLock;\n"
  },
  {
    "path": "src/icons/building-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95Z\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingSlash;\n"
  },
  {
    "path": "src/icons/building-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingUp;\n"
  },
  {
    "path": "src/icons/building-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5a.5.5 0 0 1-1 0V1H3v14h3v-2.5a.5.5 0 0 1 .5-.5H8v4H3a1 1 0 0 1-1-1z\" />\n        <path d=\"M4.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-6 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm5 8a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nBuildingX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingX;\n"
  },
  {
    "path": "src/icons/building.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Building = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-building', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3z\" />\n      </svg>\n    );\n  },\n);\n\nBuilding.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Building;\n"
  },
  {
    "path": "src/icons/buildings-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BuildingsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-buildings-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 .5a.5.5 0 0 0-.724-.447l-8 4A.5.5 0 0 0 6 4.5v3.14L.342 9.526A.5.5 0 0 0 0 10v5.5a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V14h1v1.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5zM2 11h1v1H2zm2 0h1v1H4zm-1 2v1H2v-1zm1 0h1v1H4zm9-10v1h-1V3zM8 5h1v1H8zm1 2v1H8V7zM8 9h1v1H8zm2 0h1v1h-1zm-1 2v1H8v-1zm1 0h1v1h-1zm3-2v1h-1V9zm-1 2h1v1h-1zm-2-4h1v1h-1zm3 0v1h-1V7zm-2-2v1h-1V5zm1 0h1v1h-1z\" />\n      </svg>\n    );\n  },\n);\n\nBuildingsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BuildingsFill;\n"
  },
  {
    "path": "src/icons/buildings.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Buildings = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-buildings', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.763.075A.5.5 0 0 1 15 .5v15a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V14h-1v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V10a.5.5 0 0 1 .342-.474L6 7.64V4.5a.5.5 0 0 1 .276-.447l8-4a.5.5 0 0 1 .487.022M6 8.694 1 10.36V15h5zM7 15h2v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5V15h2V1.309l-7 3.5z\" />\n        <path d=\"M2 11h1v1H2zm2 0h1v1H4zm-2 2h1v1H2zm2 0h1v1H4zm4-4h1v1H8zm2 0h1v1h-1zm-2 2h1v1H8zm2 0h1v1h-1zm2-2h1v1h-1zm0 2h1v1h-1zM8 7h1v1H8zm2 0h1v1h-1zm2 0h1v1h-1zM8 5h1v1H8zm2 0h1v1h-1zm2 0h1v1h-1zm0-2h1v1h-1z\" />\n      </svg>\n    );\n  },\n);\n\nBuildings.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Buildings;\n"
  },
  {
    "path": "src/icons/bullseye.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Bullseye = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bullseye', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M8 13A5 5 0 1 1 8 3a5 5 0 0 1 0 10m0 1A6 6 0 1 0 8 2a6 6 0 0 0 0 12\" />\n        <path d=\"M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8\" />\n        <path d=\"M9.5 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nBullseye.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Bullseye;\n"
  },
  {
    "path": "src/icons/bus-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BusFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bus-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 7a1 1 0 0 1-1 1v3.5c0 .818-.393 1.544-1 2v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V14H5v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-2a2.5 2.5 0 0 1-1-2V8a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1V2.64C1 1.452 1.845.408 3.064.268A44 44 0 0 1 8 0c2.1 0 3.792.136 4.936.268C14.155.408 15 1.452 15 2.64V4a1 1 0 0 1 1 1zM3.552 3.22A43 43 0 0 1 8 3c1.837 0 3.353.107 4.448.22a.5.5 0 0 0 .104-.994A44 44 0 0 0 8 2c-1.876 0-3.426.109-4.552.226a.5.5 0 1 0 .104.994M8 4c-1.876 0-3.426.109-4.552.226A.5.5 0 0 0 3 4.723v3.554a.5.5 0 0 0 .448.497C4.574 8.891 6.124 9 8 9s3.426-.109 4.552-.226A.5.5 0 0 0 13 8.277V4.723a.5.5 0 0 0-.448-.497A44 44 0 0 0 8 4m-3 7a1 1 0 1 0-2 0 1 1 0 0 0 2 0m8 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-7 0a1 1 0 0 0 1 1h2a1 1 0 1 0 0-2H7a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nBusFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BusFrontFill;\n"
  },
  {
    "path": "src/icons/bus-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst BusFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-bus-front', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0m8 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-6-1a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2zm1-6c-1.876 0-3.426.109-4.552.226A.5.5 0 0 0 3 4.723v3.554a.5.5 0 0 0 .448.497C4.574 8.891 6.124 9 8 9s3.426-.109 4.552-.226A.5.5 0 0 0 13 8.277V4.723a.5.5 0 0 0-.448-.497A44 44 0 0 0 8 4m0-1c-1.837 0-3.353.107-4.448.22a.5.5 0 1 1-.104-.994A44 44 0 0 1 8 2c1.876 0 3.426.109 4.552.226a.5.5 0 1 1-.104.994A43 43 0 0 0 8 3\" />\n        <path d=\"M15 8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1V2.64c0-1.188-.845-2.232-2.064-2.372A44 44 0 0 0 8 0C5.9 0 4.208.136 3.064.268 1.845.408 1 1.452 1 2.64V4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1v3.5c0 .818.393 1.544 1 2v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5V14h6v1.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2c.607-.456 1-1.182 1-2zM8 1c2.056 0 3.71.134 4.822.261.676.078 1.178.66 1.178 1.379v8.86a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 11.5V2.64c0-.72.502-1.301 1.178-1.379A43 43 0 0 1 8 1\" />\n      </svg>\n    );\n  },\n);\n\nBusFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default BusFront;\n"
  },
  {
    "path": "src/icons/c-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-c-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.146 4.992c.961 0 1.641.633 1.729 1.512h1.295v-.088c-.094-1.518-1.348-2.572-3.03-2.572-2.068 0-3.269 1.377-3.269 3.638v1.073c0 2.267 1.178 3.603 3.27 3.603 1.675 0 2.93-1.02 3.029-2.467v-.093H9.875c-.088.832-.75 1.418-1.729 1.418-1.224 0-1.927-.891-1.927-2.461v-1.06c0-1.583.715-2.503 1.927-2.503\" />\n      </svg>\n    );\n  },\n);\n\nCCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CCircleFill;\n"
  },
  {
    "path": "src/icons/c-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-c-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.146 4.992c-1.212 0-1.927.92-1.927 2.502v1.06c0 1.571.703 2.462 1.927 2.462.979 0 1.641-.586 1.729-1.418h1.295v.093c-.1 1.448-1.354 2.467-3.03 2.467-2.091 0-3.269-1.336-3.269-3.603V7.482c0-2.261 1.201-3.638 3.27-3.638 1.681 0 2.935 1.054 3.029 2.572v.088H9.875c-.088-.879-.768-1.512-1.729-1.512\" />\n      </svg>\n    );\n  },\n);\n\nCCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CCircle;\n"
  },
  {
    "path": "src/icons/c-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-c-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.146 4.992c-1.212 0-1.927.92-1.927 2.502v1.06c0 1.571.703 2.462 1.927 2.462.979 0 1.641-.586 1.729-1.418h1.295v.093c-.1 1.448-1.354 2.467-3.03 2.467-2.091 0-3.269-1.336-3.269-3.603V7.482c0-2.261 1.201-3.638 3.27-3.638 1.681 0 2.935 1.054 3.029 2.572v.088H9.875c-.088-.879-.768-1.512-1.729-1.512\" />\n      </svg>\n    );\n  },\n);\n\nCSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CSquareFill;\n"
  },
  {
    "path": "src/icons/c-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-c-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.146 4.992c-1.212 0-1.927.92-1.927 2.502v1.06c0 1.571.703 2.462 1.927 2.462.979 0 1.641-.586 1.729-1.418h1.295v.093c-.1 1.448-1.354 2.467-3.03 2.467-2.091 0-3.269-1.336-3.269-3.603V7.482c0-2.261 1.201-3.638 3.27-3.638 1.681 0 2.935 1.054 3.029 2.572v.088H9.875c-.088-.879-.768-1.512-1.729-1.512\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nCSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CSquare;\n"
  },
  {
    "path": "src/icons/cake-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CakeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cake-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.399.804.595-.792.598.79A.747.747 0 0 1 8.5 1.806V4H11a2 2 0 0 1 2 2v3h1a2 2 0 0 1 2 2v4a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1v-4a2 2 0 0 1 2-2h1V6a2 2 0 0 1 2-2h2.5V1.813a.747.747 0 0 1-.101-1.01ZM12 6.414a.9.9 0 0 1-.646-.268 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0A.9.9 0 0 1 4 6.414v1c.49 0 .98-.187 1.354-.56a.914.914 0 0 1 1.292 0c.748.747 1.96.747 2.708 0a.914.914 0 0 1 1.292 0c.374.373.864.56 1.354.56zm2.646 5.732a.914.914 0 0 1-1.293 0 1.914 1.914 0 0 0-2.707 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0L1 11.793v1.34c.737.452 1.715.36 2.354-.28a.914.914 0 0 1 1.292 0c.748.748 1.96.748 2.708 0a.914.914 0 0 1 1.292 0c.748.748 1.96.748 2.707 0a.914.914 0 0 1 1.293 0 1.915 1.915 0 0 0 2.354.28v-1.34z\" />\n      </svg>\n    );\n  },\n);\n\nCakeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CakeFill;\n"
  },
  {
    "path": "src/icons/cake.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cake = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cake', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.994.013-.595.79a.747.747 0 0 0 .101 1.01V4H5a2 2 0 0 0-2 2v3H2a2 2 0 0 0-2 2v4a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4a2 2 0 0 0-2-2h-1V6a2 2 0 0 0-2-2H8.5V1.806A.747.747 0 0 0 8.592.802zM4 6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v.414a.9.9 0 0 1-.646-.268 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0A.9.9 0 0 1 4 6.414zm0 1.414c.49 0 .98-.187 1.354-.56a.914.914 0 0 1 1.292 0c.748.747 1.96.747 2.708 0a.914.914 0 0 1 1.292 0c.374.373.864.56 1.354.56V9H4zM1 11a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.793l-.354.354a.914.914 0 0 1-1.293 0 1.914 1.914 0 0 0-2.707 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0 1.914 1.914 0 0 0-2.708 0 .914.914 0 0 1-1.292 0L1 11.793zm11.646 1.854a1.915 1.915 0 0 0 2.354.279V15H1v-1.867c.737.452 1.715.36 2.354-.28a.914.914 0 0 1 1.292 0c.748.748 1.96.748 2.708 0a.914.914 0 0 1 1.292 0c.748.748 1.96.748 2.707 0a.914.914 0 0 1 1.293 0Z\" />\n      </svg>\n    );\n  },\n);\n\nCake.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cake;\n"
  },
  {
    "path": "src/icons/cake2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cake2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cake2-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m2.899.804.595-.792.598.79A.747.747 0 0 1 4 1.806v4.886q-.532-.09-1-.201V1.813a.747.747 0 0 1-.1-1.01ZM13 1.806v4.685a15 15 0 0 1-1 .201v-4.88a.747.747 0 0 1-.1-1.007l.595-.792.598.79A.746.746 0 0 1 13 1.806m-3 0a.746.746 0 0 0 .092-1.004l-.598-.79-.595.792A.747.747 0 0 0 9 1.813v5.17q.512-.02 1-.055zm-3 0v5.176q-.512-.018-1-.054V1.813a.747.747 0 0 1-.1-1.01l.595-.79.598.789A.747.747 0 0 1 7 1.806\" />\n        <path d=\"M4.5 6.988V4.226a23 23 0 0 1 1-.114V7.16c0 .131.101.24.232.25l.231.017q.498.037 1.02.055l.258.01a.25.25 0 0 0 .26-.25V4.003a29 29 0 0 1 1 0V7.24a.25.25 0 0 0 .258.25l.259-.009q.52-.018 1.019-.055l.231-.017a.25.25 0 0 0 .232-.25V4.112q.518.047 1 .114v2.762a.25.25 0 0 0 .292.246l.291-.049q.547-.091 1.033-.208l.192-.046a.25.25 0 0 0 .192-.243V4.621c.672.184 1.251.409 1.677.678.415.261.823.655.823 1.2V13.5c0 .546-.408.94-.823 1.201-.44.278-1.043.51-1.745.696-1.41.376-3.33.603-5.432.603s-4.022-.227-5.432-.603c-.702-.187-1.305-.418-1.745-.696C.408 14.44 0 14.046 0 13.5v-7c0-.546.408-.94.823-1.201.426-.269 1.005-.494 1.677-.678v2.067c0 .116.08.216.192.243l.192.046q.486.116 1.033.208l.292.05a.25.25 0 0 0 .291-.247M1 8.82v1.659a1.935 1.935 0 0 0 2.298.43.935.935 0 0 1 1.08.175l.348.349a2 2 0 0 0 2.615.185l.059-.044a1 1 0 0 1 1.2 0l.06.044a2 2 0 0 0 2.613-.185l.348-.348a.94.94 0 0 1 1.082-.175c.781.39 1.718.208 2.297-.426V8.833l-.68.907a.94.94 0 0 1-1.17.276 1.94 1.94 0 0 0-2.236.363l-.348.348a1 1 0 0 1-1.307.092l-.06-.044a2 2 0 0 0-2.399 0l-.06.044a1 1 0 0 1-1.306-.092l-.35-.35a1.935 1.935 0 0 0-2.233-.362.935.935 0 0 1-1.168-.277z\" />\n      </svg>\n    );\n  },\n);\n\nCake2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cake2Fill;\n"
  },
  {
    "path": "src/icons/cake2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cake2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cake2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.494.013-.595.79A.747.747 0 0 0 3 1.814v2.683q-.224.051-.432.107c-.702.187-1.305.418-1.745.696C.408 5.56 0 5.954 0 6.5v7c0 .546.408.94.823 1.201.44.278 1.043.51 1.745.696C3.978 15.773 5.898 16 8 16s4.022-.227 5.432-.603c.701-.187 1.305-.418 1.745-.696.415-.261.823-.655.823-1.201v-7c0-.546-.408-.94-.823-1.201-.44-.278-1.043-.51-1.745-.696A12 12 0 0 0 13 4.496v-2.69a.747.747 0 0 0 .092-1.004l-.598-.79-.595.792A.747.747 0 0 0 12 1.813V4.3a22 22 0 0 0-2-.23V1.806a.747.747 0 0 0 .092-1.004l-.598-.79-.595.792A.747.747 0 0 0 9 1.813v2.204a29 29 0 0 0-2 0V1.806A.747.747 0 0 0 7.092.802l-.598-.79-.595.792A.747.747 0 0 0 6 1.813V4.07c-.71.05-1.383.129-2 .23V1.806A.747.747 0 0 0 4.092.802zm-.668 5.556L3 5.524v.967q.468.111 1 .201V5.315a21 21 0 0 1 2-.242v1.855q.488.036 1 .054V5.018a28 28 0 0 1 2 0v1.964q.512-.018 1-.054V5.073c.72.054 1.393.137 2 .242v1.377q.532-.09 1-.201v-.967l.175.045c.655.175 1.15.374 1.469.575.344.217.356.35.356.356s-.012.139-.356.356c-.319.2-.814.4-1.47.575C11.87 7.78 10.041 8 8 8c-2.04 0-3.87-.221-5.174-.569-.656-.175-1.151-.374-1.47-.575C1.012 6.639 1 6.506 1 6.5s.012-.139.356-.356c.319-.2.814-.4 1.47-.575M15 7.806v1.027l-.68.907a.94.94 0 0 1-1.17.276 1.94 1.94 0 0 0-2.236.363l-.348.348a1 1 0 0 1-1.307.092l-.06-.044a2 2 0 0 0-2.399 0l-.06.044a1 1 0 0 1-1.306-.092l-.35-.35a1.935 1.935 0 0 0-2.233-.362.935.935 0 0 1-1.168-.277L1 8.82V7.806c.42.232.956.428 1.568.591C3.978 8.773 5.898 9 8 9s4.022-.227 5.432-.603c.612-.163 1.149-.36 1.568-.591m0 2.679V13.5c0 .006-.012.139-.356.355-.319.202-.814.401-1.47.576C11.87 14.78 10.041 15 8 15c-2.04 0-3.87-.221-5.174-.569-.656-.175-1.151-.374-1.47-.575-.344-.217-.356-.35-.356-.356v-3.02a1.935 1.935 0 0 0 2.298.43.935.935 0 0 1 1.08.175l.348.349a2 2 0 0 0 2.615.185l.059-.044a1 1 0 0 1 1.2 0l.06.044a2 2 0 0 0 2.613-.185l.348-.348a.94.94 0 0 1 1.082-.175c.781.39 1.718.208 2.297-.426\" />\n      </svg>\n    );\n  },\n);\n\nCake2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cake2;\n"
  },
  {
    "path": "src/icons/calculator-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalculatorFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calculator-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2 .5v2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5m0 4v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 12.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5M7.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM7 9.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m.5 2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM10 6.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m.5 2.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalculatorFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalculatorFill;\n"
  },
  {
    "path": "src/icons/calculator.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calculator = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calculator', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M4 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalculator.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calculator;\n"
  },
  {
    "path": "src/icons/calendar-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2m-5.146-5.146-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nCalendarCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarCheckFill;\n"
  },
  {
    "path": "src/icons/calendar-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarCheck;\n"
  },
  {
    "path": "src/icons/calendar-date-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarDateFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-date-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zm5.402 9.746c.625 0 1.184-.484 1.184-1.18 0-.832-.527-1.23-1.16-1.23-.586 0-1.168.387-1.168 1.21 0 .817.543 1.2 1.144 1.2\" />\n        <path d=\"M16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2m-6.664-1.21c-1.11 0-1.656-.767-1.703-1.407h.683c.043.37.387.82 1.051.82.844 0 1.301-.848 1.305-2.164h-.027c-.153.414-.637.79-1.383.79-.852 0-1.676-.61-1.676-1.77 0-1.137.871-1.809 1.797-1.809 1.172 0 1.953.734 1.953 2.668 0 1.805-.742 2.871-2 2.871zm-2.89-5.435v5.332H5.77V8.079h-.012c-.29.156-.883.52-1.258.777V8.16a13 13 0 0 1 1.313-.805h.632z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarDateFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarDateFill;\n"
  },
  {
    "path": "src/icons/calendar-date.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarDate = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-date', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.445 11.688V6.354h-.633A13 13 0 0 0 4.5 7.16v.695c.375-.257.969-.62 1.258-.777h.012v4.61zm1.188-1.305c.047.64.594 1.406 1.703 1.406 1.258 0 2-1.066 2-2.871 0-1.934-.781-2.668-1.953-2.668-.926 0-1.797.672-1.797 1.809 0 1.16.824 1.77 1.676 1.77.746 0 1.23-.376 1.383-.79h.027c-.004 1.316-.461 2.164-1.305 2.164-.664 0-1.008-.45-1.05-.82zm2.953-2.317c0 .696-.559 1.18-1.184 1.18-.601 0-1.144-.383-1.144-1.2 0-.823.582-1.21 1.168-1.21.633 0 1.16.398 1.16 1.23\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarDate.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarDate;\n"
  },
  {
    "path": "src/icons/calendar-day-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarDayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-day-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5h16zm-4.785-6.145a.428.428 0 1 0 0-.855.426.426 0 0 0-.43.43c0 .238.192.425.43.425m.336.563h-.672v4.105h.672zm-6.867 4.105v-2.3h2.261v-.61H4.684V7.801h2.464v-.61H4v5.332zm3.296 0h.676V9.98c0-.554.227-1.007.953-1.007.125 0 .258.004.329.015v-.613a2 2 0 0 0-.254-.02c-.582 0-.891.32-1.012.567h-.02v-.504H7.98z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarDayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarDayFill;\n"
  },
  {
    "path": "src/icons/calendar-day.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarDay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-day', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.684 11.523v-2.3h2.261v-.61H4.684V6.801h2.464v-.61H4v5.332zm3.296 0h.676V8.98c0-.554.227-1.007.953-1.007.125 0 .258.004.329.015v-.613a2 2 0 0 0-.254-.02c-.582 0-.891.32-1.012.567h-.02v-.504H7.98zm2.805-5.093c0 .238.192.425.43.425a.428.428 0 1 0 0-.855.426.426 0 0 0-.43.43m.094 5.093h.672V7.418h-.672z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarDay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarDay;\n"
  },
  {
    "path": "src/icons/calendar-event-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarEventFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-event-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2m-3.5-7h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCalendarEventFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarEventFill;\n"
  },
  {
    "path": "src/icons/calendar-event.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarEvent = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-event', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarEvent.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarEvent;\n"
  },
  {
    "path": "src/icons/calendar-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5h16V4H0V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCalendarFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarFill;\n"
  },
  {
    "path": "src/icons/calendar-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nCalendarHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarHeartFill;\n"
  },
  {
    "path": "src/icons/calendar-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM1 14V4h14v10a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1m7-6.507c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nCalendarHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarHeart;\n"
  },
  {
    "path": "src/icons/calendar-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nCalendarMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarMinusFill;\n"
  },
  {
    "path": "src/icons/calendar-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 9.5A.5.5 0 0 1 6 9h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarMinus;\n"
  },
  {
    "path": "src/icons/calendar-month-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarMonthFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-month-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zm.104 7.305L4.9 10.18H3.284l.8-2.375zm9.074 2.297c0-.832-.414-1.36-1.062-1.36-.692 0-1.098.492-1.098 1.36v.253c0 .852.406 1.364 1.098 1.364.671 0 1.062-.516 1.062-1.364z\" />\n        <path d=\"M16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M2.56 12.332h-.71L3.748 7h.696l1.898 5.332h-.719l-.539-1.602H3.1zm7.29-4.105v4.105h-.668v-.539h-.027c-.145.324-.532.605-1.188.605-.847 0-1.453-.484-1.453-1.425V8.227h.676v2.554c0 .766.441 1.012.98 1.012.59 0 1.004-.371 1.004-1.023V8.227zm1.273 4.41c.075.332.422.636.985.636.648 0 1.07-.378 1.07-1.023v-.605h-.02c-.163.355-.613.648-1.171.648-.957 0-1.64-.672-1.64-1.902v-.34c0-1.207.675-1.887 1.64-1.887.558 0 1.004.293 1.195.64h.02v-.577h.648v4.03c0 1.052-.816 1.579-1.746 1.579-1.043 0-1.574-.516-1.668-1.2z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarMonthFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarMonthFill;\n"
  },
  {
    "path": "src/icons/calendar-month.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarMonth = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-month', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.56 11.332 3.1 9.73h1.984l.54 1.602h.718L4.444 6h-.696L1.85 11.332zm1.544-4.527L4.9 9.18H3.284l.8-2.375zm5.746.422h-.676V9.77c0 .652-.414 1.023-1.004 1.023-.539 0-.98-.246-.98-1.012V7.227h-.676v2.746c0 .941.606 1.425 1.453 1.425.656 0 1.043-.28 1.188-.605h.027v.539h.668zm2.258 5.046c-.563 0-.91-.304-.985-.636h-.687c.094.683.625 1.199 1.668 1.199.93 0 1.746-.527 1.746-1.578V7.227h-.649v.578h-.019c-.191-.348-.637-.64-1.195-.64-.965 0-1.64.679-1.64 1.886v.34c0 1.23.683 1.902 1.64 1.902.558 0 1.008-.293 1.172-.648h.02v.605c0 .645-.423 1.023-1.071 1.023m.008-4.53c.648 0 1.062.527 1.062 1.359v.253c0 .848-.39 1.364-1.062 1.364-.692 0-1.098-.512-1.098-1.364v-.253c0-.868.406-1.36 1.098-1.36z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarMonth.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarMonth;\n"
  },
  {
    "path": "src/icons/calendar-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M8.5 8.5V10H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V11H6a.5.5 0 0 1 0-1h1.5V8.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nCalendarPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarPlusFill;\n"
  },
  {
    "path": "src/icons/calendar-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 7a.5.5 0 0 1 .5.5V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5A.5.5 0 0 1 8 7\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarPlus;\n"
  },
  {
    "path": "src/icons/calendar-range-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarRangeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-range-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 7V5H0v5h5a1 1 0 1 1 0 2H0v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9h-6a1 1 0 1 1 0-2z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarRangeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarRangeFill;\n"
  },
  {
    "path": "src/icons/calendar-range.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarRange = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-range', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 7a1 1 0 0 1 1-1h5v2h-5a1 1 0 0 1-1-1M1 9h4a1 1 0 0 1 0 2H1z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarRange.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarRange;\n"
  },
  {
    "path": "src/icons/calendar-week-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarWeekFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-week-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M9.5 7h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5m3 0h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5M2 10.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCalendarWeekFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarWeekFill;\n"
  },
  {
    "path": "src/icons/calendar-week.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarWeek = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-week', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarWeek.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarWeek;\n"
  },
  {
    "path": "src/icons/calendar-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M6.854 8.146 8 9.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 10l1.147 1.146a.5.5 0 0 1-.708.708L8 10.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 10 6.146 8.854a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nCalendarXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarXFill;\n"
  },
  {
    "path": "src/icons/calendar-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CalendarX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.146 7.146a.5.5 0 0 1 .708 0L8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 0 1 0-.708\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendarX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CalendarX;\n"
  },
  {
    "path": "src/icons/calendar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar;\n"
  },
  {
    "path": "src/icons/calendar2-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2CheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5m-2.6 5.854a.5.5 0 0 0-.708-.708L7.5 10.793 6.354 9.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2CheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2CheckFill;\n"
  },
  {
    "path": "src/icons/calendar2-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Check = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.854 8.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708 0\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Check.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Check;\n"
  },
  {
    "path": "src/icons/calendar2-date-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2DateFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-date-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.402 10.246c.625 0 1.184-.484 1.184-1.18 0-.832-.527-1.23-1.16-1.23-.586 0-1.168.387-1.168 1.21 0 .817.543 1.2 1.144 1.2\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5m-4.118 9.79c1.258 0 2-1.067 2-2.872 0-1.934-.781-2.668-1.953-2.668-.926 0-1.797.672-1.797 1.809 0 1.16.824 1.77 1.676 1.77.746 0 1.23-.376 1.383-.79h.027c-.004 1.316-.461 2.164-1.305 2.164-.664 0-1.008-.45-1.05-.82h-.684c.047.64.594 1.406 1.703 1.406zm-2.89-5.435h-.633A13 13 0 0 0 4.5 8.16v.695c.375-.257.969-.62 1.258-.777h.012v4.61h.675V7.354z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2DateFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2DateFill;\n"
  },
  {
    "path": "src/icons/calendar2-date.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Date = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-date', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.445 12.688V7.354h-.633A13 13 0 0 0 4.5 8.16v.695c.375-.257.969-.62 1.258-.777h.012v4.61zm1.188-1.305c.047.64.594 1.406 1.703 1.406 1.258 0 2-1.066 2-2.871 0-1.934-.781-2.668-1.953-2.668-.926 0-1.797.672-1.797 1.809 0 1.16.824 1.77 1.676 1.77.746 0 1.23-.376 1.383-.79h.027c-.004 1.316-.461 2.164-1.305 2.164-.664 0-1.008-.45-1.05-.82zm2.953-2.317c0 .696-.559 1.18-1.184 1.18-.601 0-1.144-.383-1.144-1.2 0-.823.582-1.21 1.168-1.21.633 0 1.16.398 1.16 1.23\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Date.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Date;\n"
  },
  {
    "path": "src/icons/calendar2-day-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2DayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-day-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5m-2.24 4.855a.428.428 0 1 0 0-.855.426.426 0 0 0-.429.43c0 .238.192.425.43.425zm.337.563h-.672v4.105h.672zm-6.867 4.105v-2.3h2.261v-.61H4.684V7.801h2.464v-.61H4v5.332zm3.296 0h.676V9.98c0-.554.227-1.007.953-1.007.125 0 .258.004.329.015v-.613a2 2 0 0 0-.254-.02c-.582 0-.891.32-1.012.567h-.02v-.504H7.98z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2DayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2DayFill;\n"
  },
  {
    "path": "src/icons/calendar2-day.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Day = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-day', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.684 12.523v-2.3h2.261v-.61H4.684V7.801h2.464v-.61H4v5.332zm3.296 0h.676V9.98c0-.554.227-1.007.953-1.007.125 0 .258.004.329.015v-.613a2 2 0 0 0-.254-.02c-.582 0-.891.32-1.012.567h-.02v-.504H7.98zm2.805-5.093c0 .238.192.425.43.425a.428.428 0 1 0 0-.855.426.426 0 0 0-.43.43m.094 5.093h.672V8.418h-.672z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Day.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Day;\n"
  },
  {
    "path": "src/icons/calendar2-event-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2EventFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-event-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5M11.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2EventFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2EventFill;\n"
  },
  {
    "path": "src/icons/calendar2-event.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Event = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-event', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 7.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Event.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Event;\n"
  },
  {
    "path": "src/icons/calendar2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM2.545 3h10.91c.3 0 .545.224.545.5v1c0 .276-.244.5-.546.5H2.545C2.245 5 2 4.776 2 4.5v-1c0-.276.244-.5.545-.5\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Fill;\n"
  },
  {
    "path": "src/icons/calendar2-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2HeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zm-2 4v-1c0-.276.244-.5.545-.5h10.91c.3 0 .545.224.545.5v1c0 .276-.244.5-.546.5H2.545C2.245 5 2 4.776 2 4.5m6 3.493c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2HeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2HeartFill;\n"
  },
  {
    "path": "src/icons/calendar2-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Heart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4zM1 3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm2 .5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5zm5 4.493c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nCalendar2Heart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Heart;\n"
  },
  {
    "path": "src/icons/calendar2-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2MinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5M6 10a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2MinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2MinusFill;\n"
  },
  {
    "path": "src/icons/calendar2-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Minus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 10.5A.5.5 0 0 1 6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Minus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Minus;\n"
  },
  {
    "path": "src/icons/calendar2-month-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2MonthFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-month-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.104 7.805 4.9 10.18H3.284l.8-2.375zm9.074 2.297c0-.832-.414-1.36-1.062-1.36-.692 0-1.098.492-1.098 1.36v.253c0 .852.406 1.364 1.098 1.364.671 0 1.062-.516 1.062-1.364z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5M2.561 12.332 3.1 10.73h1.984l.54 1.602h.718L4.444 7h-.696L1.85 12.332zM9.85 8.227h-.676v2.543c0 .652-.414 1.023-1.004 1.023-.539 0-.98-.246-.98-1.012V8.227h-.676v2.746c0 .941.606 1.425 1.453 1.425.656 0 1.043-.28 1.188-.605h.027v.539h.668zm1.273 4.41h-.687c.094.683.625 1.199 1.668 1.199.93 0 1.746-.527 1.746-1.578V8.227h-.649v.578h-.019c-.191-.348-.637-.64-1.195-.64-.965 0-1.64.679-1.64 1.886v.34c0 1.23.683 1.902 1.64 1.902.558 0 1.008-.293 1.172-.648h.02v.605c0 .645-.423 1.023-1.071 1.023-.563 0-.91-.304-.985-.636\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2MonthFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2MonthFill;\n"
  },
  {
    "path": "src/icons/calendar2-month.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Month = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-month', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m2.56 12.332.54-1.602h1.984l.54 1.602h.718L4.444 7h-.696L1.85 12.332zm1.544-4.527L4.9 10.18H3.284l.8-2.375zm5.746.422h-.676v2.543c0 .652-.414 1.023-1.004 1.023-.539 0-.98-.246-.98-1.012V8.227h-.676v2.746c0 .941.606 1.425 1.453 1.425.656 0 1.043-.28 1.188-.605h.027v.539h.668zm2.258 5.046c-.563 0-.91-.304-.985-.636h-.687c.094.683.625 1.199 1.668 1.199.93 0 1.746-.527 1.746-1.578V8.227h-.649v.578h-.019c-.191-.348-.637-.64-1.195-.64-.965 0-1.64.679-1.64 1.886v.34c0 1.23.683 1.902 1.64 1.902.558 0 1.008-.293 1.172-.648h.02v.605c0 .645-.423 1.023-1.071 1.023m.008-4.53c.648 0 1.062.527 1.062 1.359v.253c0 .848-.39 1.364-1.062 1.364-.692 0-1.098-.512-1.098-1.364v-.253c0-.868.406-1.36 1.098-1.36z\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Month.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Month;\n"
  },
  {
    "path": "src/icons/calendar2-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2PlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 3.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5H2.545c-.3 0-.545.224-.545.5m6.5 5a.5.5 0 0 0-1 0V10H6a.5.5 0 0 0 0 1h1.5v1.5a.5.5 0 0 0 1 0V11H10a.5.5 0 0 0 0-1H8.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2PlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2PlusFill;\n"
  },
  {
    "path": "src/icons/calendar2-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Plus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5zM8 8a.5.5 0 0 1 .5.5V10H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V11H6a.5.5 0 0 1 0-1h1.5V8.5A.5.5 0 0 1 8 8\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Plus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Plus;\n"
  },
  {
    "path": "src/icons/calendar2-range-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2RangeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-range-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5M10 7a1 1 0 0 0 0 2h5V7zm-4 4a1 1 0 0 0-1-1H1v2h4a1 1 0 0 0 1-1\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2RangeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2RangeFill;\n"
  },
  {
    "path": "src/icons/calendar2-range.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Range = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-range', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5zM9 8a1 1 0 0 1 1-1h5v2h-5a1 1 0 0 1-1-1m-8 2h4a1 1 0 1 1 0 2H1z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Range.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Range;\n"
  },
  {
    "path": "src/icons/calendar2-week-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2WeekFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-week-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5M8.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM3 10.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5m3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2WeekFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2WeekFill;\n"
  },
  {
    "path": "src/icons/calendar2-week.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2Week = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-week', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5zM11 7.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2Week.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2Week;\n"
  },
  {
    "path": "src/icons/calendar2-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2XFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5m9.954 3H2.545c-.3 0-.545.224-.545.5v1c0 .276.244.5.545.5h10.91c.3 0 .545-.224.545-.5v-1c0-.276-.244-.5-.546-.5m-6.6 5.146a.5.5 0 1 0-.708.708L7.293 10l-1.147 1.146a.5.5 0 0 0 .708.708L8 10.707l1.146 1.147a.5.5 0 0 0 .708-.708L8.707 10l1.147-1.146a.5.5 0 0 0-.708-.708L8 9.293z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2XFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2XFill;\n"
  },
  {
    "path": "src/icons/calendar2-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2X = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.146 8.146a.5.5 0 0 1 .708 0L8 9.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 10l1.147 1.146a.5.5 0 0 1-.708.708L8 10.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 10 6.146 8.854a.5.5 0 0 1 0-.708\" />\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2X.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2X;\n"
  },
  {
    "path": "src/icons/calendar2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n        <path d=\"M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar2;\n"
  },
  {
    "path": "src/icons/calendar3-event-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3EventFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-event-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3h16zm-3-9a1 1 0 1 0 0 2 1 1 0 0 0 0-2m1-5a2 2 0 0 1 2 2H0a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3EventFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3EventFill;\n"
  },
  {
    "path": "src/icons/calendar3-event.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3Event = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-event', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z\" />\n        <path d=\"M12 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3Event.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3Event;\n"
  },
  {
    "path": "src/icons/calendar3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2zm0 1v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3Fill;\n"
  },
  {
    "path": "src/icons/calendar3-range-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3RangeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-range-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 5h-6a1 1 0 0 0 0 2h6v7a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-4h6a1 1 0 0 0 0-2H0V3h16zm-2-5a2 2 0 0 1 2 2H0a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3RangeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3RangeFill;\n"
  },
  {
    "path": "src/icons/calendar3-range.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3Range = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-range', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z\" />\n        <path d=\"M7 10a1 1 0 0 0 0-2H1v2zm2-3h6V5H9a1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3Range.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3Range;\n"
  },
  {
    "path": "src/icons/calendar3-week-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3WeekFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-week-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3h16zM3 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2m3 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4-3a1 1 0 1 0 0 2 1 1 0 0 0 0-2m3 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2m1-5a2 2 0 0 1 2 2H0a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3WeekFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3WeekFill;\n"
  },
  {
    "path": "src/icons/calendar3-week.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3Week = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3-week', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z\" />\n        <path d=\"M12 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-5 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m2-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-5 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3Week.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3Week;\n"
  },
  {
    "path": "src/icons/calendar3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z\" />\n        <path d=\"M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nCalendar3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar3;\n"
  },
  {
    "path": "src/icons/calendar4-event.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar4Event = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar4-event', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n        <path d=\"M11 7.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar4Event.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar4Event;\n"
  },
  {
    "path": "src/icons/calendar4-range.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar4Range = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar4-range', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n        <path d=\"M9 7.5a.5.5 0 0 1 .5-.5H15v2H9.5a.5.5 0 0 1-.5-.5zm-2 3v1a.5.5 0 0 1-.5.5H1v-2h5.5a.5.5 0 0 1 .5.5\" />\n      </svg>\n    );\n  },\n);\n\nCalendar4Range.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar4Range;\n"
  },
  {
    "path": "src/icons/calendar4-week.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar4Week = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar4-week', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n        <path d=\"M11 7.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-2 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar4Week.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar4Week;\n"
  },
  {
    "path": "src/icons/calendar4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Calendar4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-calendar4', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nCalendar4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Calendar4;\n"
  },
  {
    "path": "src/icons/camera-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0\" />\n        <path d=\"M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0\" />\n      </svg>\n    );\n  },\n);\n\nCameraFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraFill;\n"
  },
  {
    "path": "src/icons/camera-reels-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraReelsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-reels-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M9 6a3 3 0 1 1 0-6 3 3 0 0 1 0 6\" />\n        <path d=\"M9 6h.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 7.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 16H2a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCameraReelsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraReelsFill;\n"
  },
  {
    "path": "src/icons/camera-reels.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraReels = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-reels', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0M1 3a2 2 0 1 0 4 0 2 2 0 0 0-4 0\" />\n        <path d=\"M9 6h.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 7.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 16H2a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm6 8.73V7.27l-3.5 1.555v4.35zM1 8v6a1 1 0 0 0 1 1h7.5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1\" />\n        <path d=\"M9 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6M7 3a2 2 0 1 1 4 0 2 2 0 0 1-4 0\" />\n      </svg>\n    );\n  },\n);\n\nCameraReels.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraReels;\n"
  },
  {
    "path": "src/icons/camera-video-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraVideoFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-video-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCameraVideoFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraVideoFill;\n"
  },
  {
    "path": "src/icons/camera-video-off-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraVideoOffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-video-off-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.961 12.365a2 2 0 0 0 .522-1.103l3.11 1.382A1 1 0 0 0 16 11.731V4.269a1 1 0 0 0-1.406-.913l-3.111 1.382A2 2 0 0 0 9.5 3H4.272zm-10.114-9A2 2 0 0 0 0 5v6a2 2 0 0 0 2 2h5.728zm9.746 11.925-10-14 .814-.58 10 14z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCameraVideoOffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraVideoOffFill;\n"
  },
  {
    "path": "src/icons/camera-video-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraVideoOff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-video-off', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.961 12.365a2 2 0 0 0 .522-1.103l3.11 1.382A1 1 0 0 0 16 11.731V4.269a1 1 0 0 0-1.406-.913l-3.111 1.382A2 2 0 0 0 9.5 3H4.272l.714 1H9.5a1 1 0 0 1 1 1v6a1 1 0 0 1-.144.518zM1.428 4.18A1 1 0 0 0 1 5v6a1 1 0 0 0 1 1h5.014l.714 1H2a2 2 0 0 1-2-2V5c0-.675.334-1.272.847-1.634zM15 11.73l-3.5-1.555v-4.35L15 4.269zm-4.407 3.56-10-14 .814-.58 10 14z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCameraVideoOff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraVideoOff;\n"
  },
  {
    "path": "src/icons/camera-video.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CameraVideo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera-video', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2zm11.5 5.175 3.5 1.556V4.269l-3.5 1.556zM2 4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7.5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCameraVideo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CameraVideo;\n"
  },
  {
    "path": "src/icons/camera.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Camera = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1.172a3 3 0 0 0 2.12-.879l.83-.828A1 1 0 0 1 6.827 3h2.344a1 1 0 0 1 .707.293l.828.828A3 3 0 0 0 12.828 5H14a1 1 0 0 1 1 1zM2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4z\" />\n        <path d=\"M8 11a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5m0 1a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M3 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nCamera.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Camera;\n"
  },
  {
    "path": "src/icons/camera2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Camera2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-camera2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 8c0-1.657 2.343-3 4-3V4a4 4 0 0 0-4 4\" />\n        <path d=\"M12.318 3h2.015C15.253 3 16 3.746 16 4.667v6.666c0 .92-.746 1.667-1.667 1.667h-2.015A5.97 5.97 0 0 1 9 14a5.97 5.97 0 0 1-3.318-1H1.667C.747 13 0 12.254 0 11.333V4.667C0 3.747.746 3 1.667 3H2a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1h.682A5.97 5.97 0 0 1 9 2c1.227 0 2.367.368 3.318 1M2 4.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0M14 8A5 5 0 1 0 4 8a5 5 0 0 0 10 0\" />\n      </svg>\n    );\n  },\n);\n\nCamera2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Camera2;\n"
  },
  {
    "path": "src/icons/capslock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CapslockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-capslock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.27 1.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H11.5v1a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-1H1.654C.78 9.5.326 8.455.924 7.816zM4.5 13.5a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nCapslockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CapslockFill;\n"
  },
  {
    "path": "src/icons/capslock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Capslock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-capslock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.27 1.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H11.5v1a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-1H1.654C.78 9.5.326 8.455.924 7.816zM14.346 8.5 8 1.731 1.654 8.5H4.5a1 1 0 0 1 1 1v1h5v-1a1 1 0 0 1 1-1zm-9.846 5a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1zm6 0h-5v1h5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCapslock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Capslock;\n"
  },
  {
    "path": "src/icons/capsule-pill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CapsulePill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-capsule-pill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.02 5.364a3 3 0 0 0-4.242-4.243L1.121 6.778a3 3 0 1 0 4.243 4.243l5.657-5.657Zm-6.413-.657 2.878-2.879a2 2 0 1 1 2.829 2.829L7.435 7.536zM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8m-.5 1.042a3 3 0 0 0 0 5.917zm1 5.917a3 3 0 0 0 0-5.917z\" />\n      </svg>\n    );\n  },\n);\n\nCapsulePill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CapsulePill;\n"
  },
  {
    "path": "src/icons/capsule.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Capsule = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-capsule', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.828 8.9 8.9 1.827a4 4 0 1 1 5.657 5.657l-7.07 7.071A4 4 0 1 1 1.827 8.9Zm9.128.771 2.893-2.893a3 3 0 1 0-4.243-4.242L6.713 5.429z\" />\n      </svg>\n    );\n  },\n);\n\nCapsule.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Capsule;\n"
  },
  {
    "path": "src/icons/car-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CarFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-car-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.52 3.515A2.5 2.5 0 0 1 4.82 2h6.362c1 0 1.904.596 2.298 1.515l.792 1.848c.075.175.21.319.38.404.5.25.855.715.965 1.262l.335 1.679q.05.242.049.49v.413c0 .814-.39 1.543-1 1.997V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.338c-1.292.048-2.745.088-4 .088s-2.708-.04-4-.088V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.892c-.61-.454-1-1.183-1-1.997v-.413a2.5 2.5 0 0 1 .049-.49l.335-1.68c.11-.546.465-1.012.964-1.261a.8.8 0 0 0 .381-.404l.792-1.848ZM3 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2m10 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2M6 8a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2zM2.906 5.189a.51.51 0 0 0 .497.731c.91-.073 3.35-.17 4.597-.17s3.688.097 4.597.17a.51.51 0 0 0 .497-.731l-.956-1.913A.5.5 0 0 0 11.691 3H4.309a.5.5 0 0 0-.447.276L2.906 5.19Z\" />\n      </svg>\n    );\n  },\n);\n\nCarFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CarFrontFill;\n"
  },
  {
    "path": "src/icons/car-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CarFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-car-front', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0m10 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M6 8a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2zM4.862 4.276 3.906 6.19a.51.51 0 0 0 .497.731c.91-.073 2.35-.17 3.597-.17s2.688.097 3.597.17a.51.51 0 0 0 .497-.731l-.956-1.913A.5.5 0 0 0 10.691 4H5.309a.5.5 0 0 0-.447.276\" />\n        <path d=\"M2.52 3.515A2.5 2.5 0 0 1 4.82 2h6.362c1 0 1.904.596 2.298 1.515l.792 1.848c.075.175.21.319.38.404.5.25.855.715.965 1.262l.335 1.679q.05.242.049.49v.413c0 .814-.39 1.543-1 1.997V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.338c-1.292.048-2.745.088-4 .088s-2.708-.04-4-.088V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.892c-.61-.454-1-1.183-1-1.997v-.413a2.5 2.5 0 0 1 .049-.49l.335-1.68c.11-.546.465-1.012.964-1.261a.8.8 0 0 0 .381-.404l.792-1.848ZM4.82 3a1.5 1.5 0 0 0-1.379.91l-.792 1.847a1.8 1.8 0 0 1-.853.904.8.8 0 0 0-.43.564L1.03 8.904a1.5 1.5 0 0 0-.03.294v.413c0 .796.62 1.448 1.408 1.484 1.555.07 3.786.155 5.592.155s4.037-.084 5.592-.155A1.48 1.48 0 0 0 15 9.611v-.413q0-.148-.03-.294l-.335-1.68a.8.8 0 0 0-.43-.563 1.8 1.8 0 0 1-.853-.904l-.792-1.848A1.5 1.5 0 0 0 11.18 3z\" />\n      </svg>\n    );\n  },\n);\n\nCarFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CarFront;\n"
  },
  {
    "path": "src/icons/card-checklist.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CardChecklist = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-card-checklist', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2z\" />\n        <path d=\"M7 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0M7 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nCardChecklist.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CardChecklist;\n"
  },
  {
    "path": "src/icons/card-heading.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CardHeading = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-card-heading', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2z\" />\n        <path d=\"M3 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0-5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCardHeading.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CardHeading;\n"
  },
  {
    "path": "src/icons/card-image.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CardImage = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-card-image', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n        <path d=\"M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2zm13 1a.5.5 0 0 1 .5.5v6l-3.775-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12v.54L1 12.5v-9a.5.5 0 0 1 .5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCardImage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CardImage;\n"
  },
  {
    "path": "src/icons/card-list.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CardList = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-card-list', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2z\" />\n        <path d=\"M5 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 8m0-2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0 5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-1-5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M4 8a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nCardList.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CardList;\n"
  },
  {
    "path": "src/icons/card-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CardText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-card-text', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2z\" />\n        <path d=\"M3 5.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 8m0 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCardText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CardText;\n"
  },
  {
    "path": "src/icons/caret-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z\" />\n      </svg>\n    );\n  },\n);\n\nCaretDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretDownFill;\n"
  },
  {
    "path": "src/icons/caret-down-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretDownSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-down-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm4 4a.5.5 0 0 0-.374.832l4 4.5a.5.5 0 0 0 .748 0l4-4.5A.5.5 0 0 0 12 6z\" />\n      </svg>\n    );\n  },\n);\n\nCaretDownSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretDownSquareFill;\n"
  },
  {
    "path": "src/icons/caret-down-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretDownSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-down-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.626 6.832A.5.5 0 0 1 4 6h8a.5.5 0 0 1 .374.832l-4 4.5a.5.5 0 0 1-.748 0z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nCaretDownSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretDownSquare;\n"
  },
  {
    "path": "src/icons/caret-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.204 5h9.592L8 10.481zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659\" />\n      </svg>\n    );\n  },\n);\n\nCaretDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretDown;\n"
  },
  {
    "path": "src/icons/caret-left-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretLeftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-left-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z\" />\n      </svg>\n    );\n  },\n);\n\nCaretLeftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretLeftFill;\n"
  },
  {
    "path": "src/icons/caret-left-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretLeftSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-left-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm10.5 10V4a.5.5 0 0 0-.832-.374l-4.5 4a.5.5 0 0 0 0 .748l4.5 4A.5.5 0 0 0 10.5 12\" />\n      </svg>\n    );\n  },\n);\n\nCaretLeftSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretLeftSquareFill;\n"
  },
  {
    "path": "src/icons/caret-left-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretLeftSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-left-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M10.205 12.456A.5.5 0 0 0 10.5 12V4a.5.5 0 0 0-.832-.374l-4.5 4a.5.5 0 0 0 0 .748l4.5 4a.5.5 0 0 0 .537.082\" />\n      </svg>\n    );\n  },\n);\n\nCaretLeftSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretLeftSquare;\n"
  },
  {
    "path": "src/icons/caret-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-left', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 12.796V3.204L4.519 8zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753\" />\n      </svg>\n    );\n  },\n);\n\nCaretLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretLeft;\n"
  },
  {
    "path": "src/icons/caret-right-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretRightFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-right-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z\" />\n      </svg>\n    );\n  },\n);\n\nCaretRightFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretRightFill;\n"
  },
  {
    "path": "src/icons/caret-right-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretRightSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-right-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.5 10a.5.5 0 0 0 .832.374l4.5-4a.5.5 0 0 0 0-.748l-4.5-4A.5.5 0 0 0 5.5 4z\" />\n      </svg>\n    );\n  },\n);\n\nCaretRightSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretRightSquareFill;\n"
  },
  {
    "path": "src/icons/caret-right-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretRightSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-right-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M5.795 12.456A.5.5 0 0 1 5.5 12V4a.5.5 0 0 1 .832-.374l4.5 4a.5.5 0 0 1 0 .748l-4.5 4a.5.5 0 0 1-.537.082\" />\n      </svg>\n    );\n  },\n);\n\nCaretRightSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretRightSquare;\n"
  },
  {
    "path": "src/icons/caret-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753\" />\n      </svg>\n    );\n  },\n);\n\nCaretRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretRight;\n"
  },
  {
    "path": "src/icons/caret-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z\" />\n      </svg>\n    );\n  },\n);\n\nCaretUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretUpFill;\n"
  },
  {
    "path": "src/icons/caret-up-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretUpSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-up-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm4 9h8a.5.5 0 0 0 .374-.832l-4-4.5a.5.5 0 0 0-.748 0l-4 4.5A.5.5 0 0 0 4 11\" />\n      </svg>\n    );\n  },\n);\n\nCaretUpSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretUpSquareFill;\n"
  },
  {
    "path": "src/icons/caret-up-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretUpSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-up-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M3.544 10.705A.5.5 0 0 0 4 11h8a.5.5 0 0 0 .374-.832l-4-4.5a.5.5 0 0 0-.748 0l-4 4.5a.5.5 0 0 0-.082.537\" />\n      </svg>\n    );\n  },\n);\n\nCaretUpSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretUpSquare;\n"
  },
  {
    "path": "src/icons/caret-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CaretUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-caret-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.204 11h9.592L8 5.519zm-.753-.659 4.796-5.48a1 1 0 0 1 1.506 0l4.796 5.48c.566.647.106 1.659-.753 1.659H3.204a1 1 0 0 1-.753-1.659\" />\n      </svg>\n    );\n  },\n);\n\nCaretUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CaretUp;\n"
  },
  {
    "path": "src/icons/cart-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-1.646-7.646-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nCartCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartCheckFill;\n"
  },
  {
    "path": "src/icons/cart-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.354 6.354a.5.5 0 0 0-.708-.708L8 8.293 6.854 7.146a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\" />\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nCartCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartCheck;\n"
  },
  {
    "path": "src/icons/cart-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M6.5 7h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nCartDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartDashFill;\n"
  },
  {
    "path": "src/icons/cart-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-dash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nCartDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartDash;\n"
  },
  {
    "path": "src/icons/cart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5M5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4m7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nCartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartFill;\n"
  },
  {
    "path": "src/icons/cart-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 5.5V7h1.5a.5.5 0 0 1 0 1H9v1.5a.5.5 0 0 1-1 0V8H6.5a.5.5 0 0 1 0-1H8V5.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nCartPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartPlusFill;\n"
  },
  {
    "path": "src/icons/cart-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 5.5a.5.5 0 0 0-1 0V7H6.5a.5.5 0 0 0 0 1H8v1.5a.5.5 0 0 0 1 0V8h1.5a.5.5 0 0 0 0-1H9z\" />\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nCartPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartPlus;\n"
  },
  {
    "path": "src/icons/cart-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7.354 5.646 8.5 6.793l1.146-1.147a.5.5 0 0 1 .708.708L9.207 7.5l1.147 1.146a.5.5 0 0 1-.708.708L8.5 8.207 7.354 9.354a.5.5 0 1 1-.708-.708L7.793 7.5 6.646 6.354a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nCartXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartXFill;\n"
  },
  {
    "path": "src/icons/cart-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CartX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.354 5.646a.5.5 0 1 0-.708.708L7.793 7.5 6.646 8.646a.5.5 0 1 0 .708.708L8.5 8.207l1.146 1.147a.5.5 0 0 0 .708-.708L9.207 7.5l1.147-1.146a.5.5 0 0 0-.708-.708L8.5 6.793z\" />\n        <path d=\"M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nCartX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CartX;\n"
  },
  {
    "path": "src/icons/cart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5M3.102 4l1.313 7h8.17l1.313-7zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4m7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nCart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cart;\n"
  },
  {
    "path": "src/icons/cart2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cart2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5M3.14 5l1.25 5h8.22l1.25-5zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0m9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0\" />\n      </svg>\n    );\n  },\n);\n\nCart2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cart2;\n"
  },
  {
    "path": "src/icons/cart3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cart3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .49.598l-1 5a.5.5 0 0 1-.465.401l-9.397.472L4.415 11H13a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5M3.102 4l.84 4.479 9.144-.459L13.89 4zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4m7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nCart3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cart3;\n"
  },
  {
    "path": "src/icons/cart4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cart4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cart4', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5M3.14 5l.5 2H5V5zM6 5v2h2V5zm3 0v2h2V5zm3 0v2h1.36l.5-2zm1.11 3H12v2h.61zM11 8H9v2h2zM8 8H6v2h2zM5 8H3.89l.5 2H5zm0 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0m9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0\" />\n      </svg>\n    );\n  },\n);\n\nCart4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cart4;\n"
  },
  {
    "path": "src/icons/cash-coin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CashCoin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cash-coin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 15a4 4 0 1 0 0-8 4 4 0 0 0 0 8m5-4a5 5 0 1 1-10 0 5 5 0 0 1 10 0\"\n        />\n        <path d=\"M9.438 11.944c.047.596.518 1.06 1.363 1.116v.44h.375v-.443c.875-.061 1.386-.529 1.386-1.207 0-.618-.39-.936-1.09-1.1l-.296-.07v-1.2c.376.043.614.248.671.532h.658c-.047-.575-.54-1.024-1.329-1.073V8.5h-.375v.45c-.747.073-1.255.522-1.255 1.158 0 .562.378.92 1.007 1.066l.248.061v1.272c-.384-.058-.639-.27-.696-.563h-.668zm1.36-1.354c-.369-.085-.569-.26-.569-.522 0-.294.216-.514.572-.578v1.1zm.432.746c.449.104.655.272.655.569 0 .339-.257.571-.709.614v-1.195z\" />\n        <path d=\"M1 0a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4.083q.088-.517.258-1H3a2 2 0 0 0-2-2V3a2 2 0 0 0 2-2h10a2 2 0 0 0 2 2v3.528c.38.34.717.728 1 1.154V1a1 1 0 0 0-1-1z\" />\n        <path d=\"M9.998 5.083 10 5a2 2 0 1 0-3.132 1.65 6 6 0 0 1 3.13-1.567\" />\n      </svg>\n    );\n  },\n);\n\nCashCoin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CashCoin;\n"
  },
  {
    "path": "src/icons/cash-stack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CashStack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cash-stack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zm7 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M0 5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm3 0a2 2 0 0 1-2 2v4a2 2 0 0 1 2 2h10a2 2 0 0 1 2-2V7a2 2 0 0 1-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCashStack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CashStack;\n"
  },
  {
    "path": "src/icons/cash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M0 4a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm3 0a2 2 0 0 1-2 2v4a2 2 0 0 1 2 2h10a2 2 0 0 1 2-2V6a2 2 0 0 1-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nCash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cash;\n"
  },
  {
    "path": "src/icons/cassette-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CassetteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cassette-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h.191l1.862-3.724A.5.5 0 0 1 4 10h8a.5.5 0 0 1 .447.276L14.31 14h.191a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2zM4 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2m8 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2M6 6a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1\" />\n        <path d=\"m13.191 14-1.5-3H4.309l-1.5 3z\" />\n      </svg>\n    );\n  },\n);\n\nCassetteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CassetteFill;\n"
  },
  {
    "path": "src/icons/cassette.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cassette = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cassette', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2m9-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 6a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2z\" />\n        <path d=\"M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2zM1 3.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-.691l-1.362-2.724A.5.5 0 0 0 12 10H4a.5.5 0 0 0-.447.276L2.19 13H1.5a.5.5 0 0 1-.5-.5zM11.691 11l1 2H3.309l1-2z\" />\n      </svg>\n    );\n  },\n);\n\nCassette.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cassette;\n"
  },
  {
    "path": "src/icons/cast.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cast = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cast', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.646 9.354-3.792 3.792a.5.5 0 0 0 .353.854h7.586a.5.5 0 0 0 .354-.854L8.354 9.354a.5.5 0 0 0-.708 0\" />\n        <path d=\"M11.414 11H14.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-13a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h3.086l-1 1H1.5A1.5 1.5 0 0 1 0 10.5v-7A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v7a1.5 1.5 0 0 1-1.5 1.5h-2.086z\" />\n      </svg>\n    );\n  },\n);\n\nCast.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cast;\n"
  },
  {
    "path": "src/icons/cc-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CcCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cc-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.408 5.89c.681 0 1.138.47 1.187 1.107h1.147v-.11c-.053-1.187-1.024-2-2.343-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.906 2.73 2.518 2.73 1.314 0 2.285-.792 2.343-1.939v-.114H6.595c-.049.615-.497 1.05-1.187 1.05-.84 0-1.318-.62-1.318-1.727v-.742c0-1.112.488-1.754 1.318-1.754Zm5.404 0c.68 0 1.138.47 1.186 1.107h1.147v-.11c-.053-1.187-1.024-2-2.342-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.496 1.05-1.186 1.05-.84 0-1.319-.62-1.319-1.727v-.742c0-1.112.488-1.754 1.319-1.754Z\" />\n      </svg>\n    );\n  },\n);\n\nCcCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CcCircleFill;\n"
  },
  {
    "path": "src/icons/cc-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CcCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cc-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.408 5.89c-.83 0-1.318.64-1.318 1.753v.742c0 1.108.479 1.727 1.318 1.727.69 0 1.138-.435 1.187-1.05h1.147v.114c-.058 1.147-1.029 1.938-2.343 1.938-1.612 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.319 0 2.29.812 2.343 1.999v.11H6.595c-.049-.638-.506-1.108-1.187-1.108Zm5.404 0c-.831 0-1.319.64-1.319 1.753v.742c0 1.108.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05h1.147v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.318 0 2.29.812 2.342 1.999v.11h-1.147c-.048-.638-.505-1.108-1.186-1.108Z\" />\n      </svg>\n    );\n  },\n);\n\nCcCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CcCircle;\n"
  },
  {
    "path": "src/icons/cc-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CcSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cc-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.408 5.89c-.83 0-1.318.64-1.318 1.753v.742c0 1.108.479 1.727 1.318 1.727.69 0 1.138-.435 1.187-1.05h1.147v.114c-.058 1.147-1.029 1.938-2.343 1.938-1.612 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.319 0 2.29.812 2.343 1.999v.11H6.595c-.049-.638-.506-1.108-1.187-1.108Zm5.404 0c-.831 0-1.319.64-1.319 1.753v.742c0 1.108.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05h1.147v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.318 0 2.29.812 2.342 1.999v.11h-1.147c-.048-.638-.505-1.108-1.186-1.108Z\" />\n      </svg>\n    );\n  },\n);\n\nCcSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CcSquareFill;\n"
  },
  {
    "path": "src/icons/cc-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CcSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cc-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.408 3.89c-.83 0-1.318.64-1.318 1.753v.742c0 1.108.479 1.727 1.318 1.727.69 0 1.138-.435 1.187-1.05h1.147v.114c-.058 1.147-1.029 1.938-2.343 1.938-1.612 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.319 0 2.29.812 2.343 1.999v.11H6.595c-.049-.638-.506-1.108-1.187-1.108Zm5.404 0c-.831 0-1.319.64-1.319 1.753v.742c0 1.108.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05h1.147v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.318 0 2.29.812 2.342 1.999v.11h-1.147c-.048-.638-.505-1.108-1.186-1.108Z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.408 3.89c-.83 0-1.318.64-1.318 1.753v.742c0 1.108.479 1.727 1.318 1.727.69 0 1.138-.435 1.187-1.05h1.147v.114c-.058 1.147-1.029 1.938-2.343 1.938-1.612 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.319 0 2.29.812 2.343 1.999v.11H6.595c-.049-.638-.506-1.108-1.187-1.108Zm5.404 0c-.831 0-1.319.64-1.319 1.753v.742c0 1.108.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05h1.147v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.75 2.518-2.75 1.318 0 2.29.812 2.342 1.999v.11h-1.147c-.048-.638-.505-1.108-1.186-1.108Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCcSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CcSquare;\n"
  },
  {
    "path": "src/icons/chat-dots-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatDotsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-dots-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nChatDotsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatDotsFill;\n"
  },
  {
    "path": "src/icons/chat-dots.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatDots = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-dots', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9 9 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.4 10.4 0 0 1-.524 2.318l-.003.011a11 11 0 0 1-.244.637c-.079.186.074.394.273.362a22 22 0 0 0 .693-.125m.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6-3.004 6-7 6a8 8 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a11 11 0 0 0 .398-2\" />\n      </svg>\n    );\n  },\n);\n\nChatDots.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatDots;\n"
  },
  {
    "path": "src/icons/chat-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6-.097 1.016-.417 2.13-.771 2.966-.079.186.074.394.273.362 2.256-.37 3.597-.938 4.18-1.234A9 9 0 0 0 8 15\" />\n      </svg>\n    );\n  },\n);\n\nChatFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatFill;\n"
  },
  {
    "path": "src/icons/chat-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6-.097 1.016-.417 2.13-.771 2.966-.079.186.074.394.273.362 2.256-.37 3.597-.938 4.18-1.234A9 9 0 0 0 8 15m0-9.007c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatHeartFill;\n"
  },
  {
    "path": "src/icons/chat-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-heart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.965 12.695a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6-3.004 6-7 6a8 8 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a11 11 0 0 0 .398-2m-.8 3.108.02-.004c1.83-.363 2.948-.842 3.468-1.105A9 9 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.4 10.4 0 0 1-.524 2.318l-.003.011a11 11 0 0 1-.244.637c-.079.186.074.394.273.362a22 22 0 0 0 .693-.125M8 5.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nChatHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatHeart;\n"
  },
  {
    "path": "src/icons/chat-left-dots-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftDotsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-dots-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4.414a1 1 0 0 0-.707.293L.854 15.146A.5.5 0 0 1 0 14.793zm5 4a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftDotsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftDotsFill;\n"
  },
  {
    "path": "src/icons/chat-left-dots.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftDots = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-dots', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftDots.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftDots;\n"
  },
  {
    "path": "src/icons/chat-left-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftFill;\n"
  },
  {
    "path": "src/icons/chat-left-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftHeartFill;\n"
  },
  {
    "path": "src/icons/chat-left-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftHeart;\n"
  },
  {
    "path": "src/icons/chat-left-quote-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftQuoteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-quote-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4.414a1 1 0 0 0-.707.293L.854 15.146A.5.5 0 0 1 0 14.793zm7.194 2.766a1.7 1.7 0 0 0-.227-.272 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 5.734 4C4.776 4 4 4.746 4 5.667c0 .92.776 1.666 1.734 1.666.343 0 .662-.095.931-.26-.137.389-.39.804-.81 1.22a.405.405 0 0 0 .011.59c.173.16.447.155.614-.01 1.334-1.329 1.37-2.758.941-3.706a2.5 2.5 0 0 0-.227-.4zM11 7.073c-.136.389-.39.804-.81 1.22a.405.405 0 0 0 .012.59c.172.16.446.155.613-.01 1.334-1.329 1.37-2.758.942-3.706a2.5 2.5 0 0 0-.228-.4 1.7 1.7 0 0 0-.227-.273 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 10.07 4c-.957 0-1.734.746-1.734 1.667 0 .92.777 1.666 1.734 1.666.343 0 .662-.095.931-.26z\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftQuoteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftQuoteFill;\n"
  },
  {
    "path": "src/icons/chat-left-quote.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftQuote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-quote', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftQuote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftQuote;\n"
  },
  {
    "path": "src/icons/chat-left-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4.414a1 1 0 0 0-.707.293L.854 15.146A.5.5 0 0 1 0 14.793zm3.5 1a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftTextFill;\n"
  },
  {
    "path": "src/icons/chat-left-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeftText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6m0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nChatLeftText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeftText;\n"
  },
  {
    "path": "src/icons/chat-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-left', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatLeft;\n"
  },
  {
    "path": "src/icons/chat-quote-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatQuoteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-quote-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M7.194 6.766a1.7 1.7 0 0 0-.227-.272 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 5.734 6C4.776 6 4 6.746 4 7.667c0 .92.776 1.666 1.734 1.666.343 0 .662-.095.931-.26-.137.389-.39.804-.81 1.22a.405.405 0 0 0 .011.59c.173.16.447.155.614-.01 1.334-1.329 1.37-2.758.941-3.706a2.5 2.5 0 0 0-.227-.4zM11 9.073c-.136.389-.39.804-.81 1.22a.405.405 0 0 0 .012.59c.172.16.446.155.613-.01 1.334-1.329 1.37-2.758.942-3.706a2.5 2.5 0 0 0-.228-.4 1.7 1.7 0 0 0-.227-.273 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 10.07 6c-.957 0-1.734.746-1.734 1.667 0 .92.777 1.666 1.734 1.666.343 0 .662-.095.931-.26z\" />\n      </svg>\n    );\n  },\n);\n\nChatQuoteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatQuoteFill;\n"
  },
  {
    "path": "src/icons/chat-quote.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatQuote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-quote', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105\" />\n        <path d=\"M7.066 6.76A1.665 1.665 0 0 0 4 7.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 0 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 7.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 0 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z\" />\n      </svg>\n    );\n  },\n);\n\nChatQuote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatQuote;\n"
  },
  {
    "path": "src/icons/chat-right-dots-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightDotsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-dots-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9.586a1 1 0 0 1 .707.293l2.853 2.853a.5.5 0 0 0 .854-.353zM5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nChatRightDotsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightDotsFill;\n"
  },
  {
    "path": "src/icons/chat-right-dots.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightDots = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-dots', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n        <path d=\"M5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nChatRightDots.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightDots;\n"
  },
  {
    "path": "src/icons/chat-right-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatRightFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightFill;\n"
  },
  {
    "path": "src/icons/chat-right-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9.586a1 1 0 0 1 .707.293l2.853 2.853a.5.5 0 0 0 .854-.353zM8 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatRightHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightHeartFill;\n"
  },
  {
    "path": "src/icons/chat-right-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n        <path d=\"M8 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatRightHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightHeart;\n"
  },
  {
    "path": "src/icons/chat-right-quote-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightQuoteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-quote-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9.586a1 1 0 0 1 .707.293l2.853 2.853a.5.5 0 0 0 .854-.353zM7.194 4.766q.13.188.227.401c.428.948.393 2.377-.942 3.706a.446.446 0 0 1-.612.01.405.405 0 0 1-.011-.59c.419-.416.672-.831.809-1.22-.269.165-.588.26-.93.26C4.775 7.333 4 6.587 4 5.667S4.776 4 5.734 4c.271 0 .528.06.756.166l.008.004c.169.07.327.182.469.324q.128.125.227.272M11 7.073c-.269.165-.588.26-.93.26-.958 0-1.735-.746-1.735-1.666S9.112 4 10.069 4c.271 0 .528.06.756.166l.008.004c.17.07.327.182.469.324q.128.125.227.272.131.188.228.401c.428.948.392 2.377-.942 3.706a.446.446 0 0 1-.613.01.405.405 0 0 1-.011-.59c.42-.416.672-.831.81-1.22z\" />\n      </svg>\n    );\n  },\n);\n\nChatRightQuoteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightQuoteFill;\n"
  },
  {
    "path": "src/icons/chat-right-quote.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightQuote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-quote', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n        <path d=\"M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z\" />\n      </svg>\n    );\n  },\n);\n\nChatRightQuote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightQuote;\n"
  },
  {
    "path": "src/icons/chat-right-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9.586a1 1 0 0 1 .707.293l2.853 2.853a.5.5 0 0 0 .854-.353zM3.5 3h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1m0 2.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1m0 2.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nChatRightTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightTextFill;\n"
  },
  {
    "path": "src/icons/chat-right-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRightText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n        <path d=\"M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6m0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nChatRightText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRightText;\n"
  },
  {
    "path": "src/icons/chat-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-right', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatRight;\n"
  },
  {
    "path": "src/icons/chat-square-dots-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareDotsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-dots-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.5a1 1 0 0 0-.8.4l-1.9 2.533a1 1 0 0 1-1.6 0L5.3 12.4a1 1 0 0 0-.8-.4H2a2 2 0 0 1-2-2zm5 4a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareDotsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareDotsFill;\n"
  },
  {
    "path": "src/icons/chat-square-dots.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareDots = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-dots', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareDots.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareDots;\n"
  },
  {
    "path": "src/icons/chat-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareFill;\n"
  },
  {
    "path": "src/icons/chat-square-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareHeartFill;\n"
  },
  {
    "path": "src/icons/chat-square-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareHeart;\n"
  },
  {
    "path": "src/icons/chat-square-quote-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareQuoteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-quote-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.5a1 1 0 0 0-.8.4l-1.9 2.533a1 1 0 0 1-1.6 0L5.3 12.4a1 1 0 0 0-.8-.4H2a2 2 0 0 1-2-2zm7.194 2.766a1.7 1.7 0 0 0-.227-.272 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 5.734 4C4.776 4 4 4.746 4 5.667c0 .92.776 1.666 1.734 1.666.343 0 .662-.095.931-.26-.137.389-.39.804-.81 1.22a.405.405 0 0 0 .011.59c.173.16.447.155.614-.01 1.334-1.329 1.37-2.758.941-3.706a2.5 2.5 0 0 0-.227-.4zM11 7.073c-.136.389-.39.804-.81 1.22a.405.405 0 0 0 .012.59c.172.16.446.155.613-.01 1.334-1.329 1.37-2.758.942-3.706a2.5 2.5 0 0 0-.228-.4 1.7 1.7 0 0 0-.227-.273 1.5 1.5 0 0 0-.469-.324l-.008-.004A1.8 1.8 0 0 0 10.07 4c-.957 0-1.734.746-1.734 1.667 0 .92.777 1.666 1.734 1.666.343 0 .662-.095.931-.26z\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareQuoteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareQuoteFill;\n"
  },
  {
    "path": "src/icons/chat-square-quote.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareQuote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-quote', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareQuote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareQuote;\n"
  },
  {
    "path": "src/icons/chat-square-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.5a1 1 0 0 0-.8.4l-1.9 2.533a1 1 0 0 1-1.6 0L5.3 12.4a1 1 0 0 0-.8-.4H2a2 2 0 0 1-2-2zm3.5 1a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareTextFill;\n"
  },
  {
    "path": "src/icons/chat-square-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquareText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6m0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nChatSquareText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquareText;\n"
  },
  {
    "path": "src/icons/chat-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nChatSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatSquare;\n"
  },
  {
    "path": "src/icons/chat-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M4.5 5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1zm0 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nChatTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatTextFill;\n"
  },
  {
    "path": "src/icons/chat-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChatText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat-text', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105\" />\n        <path d=\"M4 5.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8m0 2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nChatText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChatText;\n"
  },
  {
    "path": "src/icons/chat.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Chat = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chat', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105\" />\n      </svg>\n    );\n  },\n);\n\nChat.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Chat;\n"
  },
  {
    "path": "src/icons/check-all.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckAll = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-all', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L2.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093L8.95 4.992zm-.92 5.14.92.92a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 1 0-1.091-1.028L9.477 9.417l-.485-.486z\" />\n      </svg>\n    );\n  },\n);\n\nCheckAll.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckAll;\n"
  },
  {
    "path": "src/icons/check-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n      </svg>\n    );\n  },\n);\n\nCheckCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckCircleFill;\n"
  },
  {
    "path": "src/icons/check-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05\" />\n      </svg>\n    );\n  },\n);\n\nCheckCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckCircle;\n"
  },
  {
    "path": "src/icons/check-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\" />\n      </svg>\n    );\n  },\n);\n\nCheckLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckLg;\n"
  },
  {
    "path": "src/icons/check-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm10.03 4.97a.75.75 0 0 1 .011 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.75.75 0 0 1 1.08-.022z\" />\n      </svg>\n    );\n  },\n);\n\nCheckSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckSquareFill;\n"
  },
  {
    "path": "src/icons/check-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CheckSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M10.97 4.97a.75.75 0 0 1 1.071 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z\" />\n      </svg>\n    );\n  },\n);\n\nCheckSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CheckSquare;\n"
  },
  {
    "path": "src/icons/check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Check = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z\" />\n      </svg>\n    );\n  },\n);\n\nCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Check;\n"
  },
  {
    "path": "src/icons/check2-all.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Check2All = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check2-all', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.354 4.354a.5.5 0 0 0-.708-.708L5 10.293 1.854 7.146a.5.5 0 1 0-.708.708l3.5 3.5a.5.5 0 0 0 .708 0zm-4.208 7-.896-.897.707-.707.543.543 6.646-6.647a.5.5 0 0 1 .708.708l-7 7a.5.5 0 0 1-.708 0\" />\n        <path d=\"m5.354 7.146.896.897-.707.707-.897-.896a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nCheck2All.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Check2All;\n"
  },
  {
    "path": "src/icons/check2-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Check2Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check2-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0\" />\n        <path d=\"M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z\" />\n      </svg>\n    );\n  },\n);\n\nCheck2Circle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Check2Circle;\n"
  },
  {
    "path": "src/icons/check2-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Check2Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check2-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5z\" />\n        <path d=\"m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nCheck2Square.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Check2Square;\n"
  },
  {
    "path": "src/icons/check2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Check2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-check2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nCheck2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Check2;\n"
  },
  {
    "path": "src/icons/chevron-bar-contract.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarContract = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-contract', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 14.854a.5.5 0 0 0 .708 0L8 11.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708m0-13.708a.5.5 0 0 1 .708 0L8 4.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarContract.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarContract;\n"
  },
  {
    "path": "src/icons/chevron-bar-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 4.146a.5.5 0 0 1 .708 0L8 7.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708M1 11.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarDown;\n"
  },
  {
    "path": "src/icons/chevron-bar-expand.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarExpand = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-expand', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 10.146a.5.5 0 0 1 .708 0L8 13.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708m0-4.292a.5.5 0 0 0 .708 0L8 2.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarExpand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarExpand;\n"
  },
  {
    "path": "src/icons/chevron-bar-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.854 3.646a.5.5 0 0 1 0 .708L8.207 8l3.647 3.646a.5.5 0 0 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .708 0M4.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarLeft;\n"
  },
  {
    "path": "src/icons/chevron-bar-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.146 3.646a.5.5 0 0 0 0 .708L7.793 8l-3.647 3.646a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708 0M11.5 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarRight;\n"
  },
  {
    "path": "src/icons/chevron-bar-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronBarUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-bar-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 11.854a.5.5 0 0 0 .708 0L8 8.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708M2.4 5.2c0 .22.18.4.4.4h10.4a.4.4 0 0 0 0-.8H2.8a.4.4 0 0 0-.4.4\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronBarUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronBarUp;\n"
  },
  {
    "path": "src/icons/chevron-compact-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronCompactDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-compact-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.553 6.776a.5.5 0 0 1 .67-.223L8 9.44l5.776-2.888a.5.5 0 1 1 .448.894l-6 3a.5.5 0 0 1-.448 0l-6-3a.5.5 0 0 1-.223-.67\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronCompactDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronCompactDown;\n"
  },
  {
    "path": "src/icons/chevron-compact-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronCompactLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-compact-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.224 1.553a.5.5 0 0 1 .223.67L6.56 8l2.888 5.776a.5.5 0 1 1-.894.448l-3-6a.5.5 0 0 1 0-.448l3-6a.5.5 0 0 1 .67-.223\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronCompactLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronCompactLeft;\n"
  },
  {
    "path": "src/icons/chevron-compact-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronCompactRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-compact-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.776 1.553a.5.5 0 0 1 .671.223l3 6a.5.5 0 0 1 0 .448l-3 6a.5.5 0 1 1-.894-.448L9.44 8 6.553 2.224a.5.5 0 0 1 .223-.671\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronCompactRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronCompactRight;\n"
  },
  {
    "path": "src/icons/chevron-compact-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronCompactUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-compact-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.776 5.553a.5.5 0 0 1 .448 0l6 3a.5.5 0 1 1-.448.894L8 6.56 2.224 9.447a.5.5 0 1 1-.448-.894z\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronCompactUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronCompactUp;\n"
  },
  {
    "path": "src/icons/chevron-contract.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronContract = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-contract', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 13.854a.5.5 0 0 0 .708 0L8 10.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708m0-11.708a.5.5 0 0 1 .708 0L8 5.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronContract.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronContract;\n"
  },
  {
    "path": "src/icons/chevron-double-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronDoubleDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-double-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.646 6.646a.5.5 0 0 1 .708 0L8 12.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.646 2.646a.5.5 0 0 1 .708 0L8 8.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronDoubleDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronDoubleDown;\n"
  },
  {
    "path": "src/icons/chevron-double-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronDoubleLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-double-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.354 1.646a.5.5 0 0 1 0 .708L2.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.354 1.646a.5.5 0 0 1 0 .708L6.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronDoubleLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronDoubleLeft;\n"
  },
  {
    "path": "src/icons/chevron-double-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronDoubleRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-double-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L9.293 8 3.646 2.354a.5.5 0 0 1 0-.708\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8 7.646 2.354a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronDoubleRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronDoubleRight;\n"
  },
  {
    "path": "src/icons/chevron-double-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronDoubleUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-double-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 2.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 3.707 2.354 9.354a.5.5 0 1 1-.708-.708z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 6.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 7.707l-5.646 5.647a.5.5 0 0 1-.708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronDoubleUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronDoubleUp;\n"
  },
  {
    "path": "src/icons/chevron-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronDown;\n"
  },
  {
    "path": "src/icons/chevron-expand.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronExpand = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-expand', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.646 9.146a.5.5 0 0 1 .708 0L8 12.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708m0-2.292a.5.5 0 0 0 .708 0L8 3.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronExpand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronExpand;\n"
  },
  {
    "path": "src/icons/chevron-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronLeft;\n"
  },
  {
    "path": "src/icons/chevron-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronRight;\n"
  },
  {
    "path": "src/icons/chevron-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ChevronUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-chevron-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nChevronUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ChevronUp;\n"
  },
  {
    "path": "src/icons/circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <circle cx=\"8\" cy=\"8\" r=\"8\" />\n      </svg>\n    );\n  },\n);\n\nCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CircleFill;\n"
  },
  {
    "path": "src/icons/circle-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CircleHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-circle-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 0 8 1zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16\" />\n      </svg>\n    );\n  },\n);\n\nCircleHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CircleHalf;\n"
  },
  {
    "path": "src/icons/circle-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CircleSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-circle-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6a6 6 0 1 1 12 0A6 6 0 0 1 0 6\" />\n        <path d=\"M12.93 5h1.57a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-1.57a7 7 0 0 1-1-.22v1.79A1.5 1.5 0 0 0 5.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 4h-1.79q.145.486.22 1\" />\n      </svg>\n    );\n  },\n);\n\nCircleSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CircleSquare;\n"
  },
  {
    "path": "src/icons/circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Circle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n      </svg>\n    );\n  },\n);\n\nCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Circle;\n"
  },
  {
    "path": "src/icons/claude.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Claude = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-claude', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.127 10.604 3.135-1.76.053-.153-.053-.085H6.11l-.525-.032-1.791-.048-1.554-.065-1.505-.08-.38-.081L0 7.832l.036-.234.32-.214.455.04 1.009.069 1.513.105 1.097.064 1.626.17h.259l.036-.105-.089-.065-.068-.064-1.566-1.062-1.695-1.121-.887-.646-.48-.327-.243-.306-.104-.67.435-.48.585.04.15.04.593.456 1.267.981 1.654 1.218.242.202.097-.068.012-.049-.109-.181-.9-1.626-.96-1.655-.428-.686-.113-.411a2 2 0 0 1-.068-.484l.496-.674L4.446 0l.662.089.279.242.411.94.666 1.48 1.033 2.014.302.597.162.553.06.17h.105v-.097l.085-1.134.157-1.392.154-1.792.052-.504.25-.605.497-.327.387.186.319.456-.045.294-.19 1.23-.37 1.93-.243 1.29h.142l.161-.16.654-.868 1.097-1.372.484-.545.565-.601.363-.287h.686l.505.751-.226.775-.707.895-.585.759-.839 1.13-.524.904.048.072.125-.012 1.897-.403 1.024-.186 1.223-.21.553.258.06.263-.218.536-1.307.323-1.533.307-2.284.54-.028.02.032.04 1.029.098.44.024h1.077l2.005.15.525.346.315.424-.053.323-.807.411-3.631-.863-.872-.218h-.12v.073l.726.71 1.331 1.202 1.667 1.55.084.383-.214.302-.226-.032-1.464-1.101-.565-.497-1.28-1.077h-.084v.113l.295.432 1.557 2.34.08.718-.112.234-.404.141-.444-.08-.911-1.28-.94-1.44-.759-1.291-.093.053-.448 4.821-.21.246-.484.186-.403-.307-.214-.496.214-.98.258-1.28.21-1.016.19-1.263.112-.42-.008-.028-.092.012-.953 1.307-1.448 1.957-1.146 1.227-.274.109-.477-.247.045-.44.266-.39 1.586-2.018.956-1.25.617-.723-.004-.105h-.036l-4.212 2.736-.75.096-.324-.302.04-.496.154-.162 1.267-.871z\" />\n      </svg>\n    );\n  },\n);\n\nClaude.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Claude;\n"
  },
  {
    "path": "src/icons/clipboard-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zm6.854 7.354-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nClipboardCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardCheckFill;\n"
  },
  {
    "path": "src/icons/clipboard-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardCheck;\n"
  },
  {
    "path": "src/icons/clipboard-data-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardDataFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-data-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zM10 8a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0zm-6 4a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0zm4-3a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nClipboardDataFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardDataFill;\n"
  },
  {
    "path": "src/icons/clipboard-data.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardData = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-data', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 11a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0zm6-4a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0zM7 9a1 1 0 0 1 2 0v3a1 1 0 1 1-2 0z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardData.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardData;\n"
  },
  {
    "path": "src/icons/clipboard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10 1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5zm-5 0A1.5 1.5 0 0 1 6.5 0h3A1.5 1.5 0 0 1 11 1.5v1A1.5 1.5 0 0 1 9.5 4h-3A1.5 1.5 0 0 1 5 2.5zm-2 0h1v1A2.5 2.5 0 0 0 6.5 5h3A2.5 2.5 0 0 0 12 2.5v-1h1a2 2 0 0 1 2 2V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3.5a2 2 0 0 1 2-2\"\n        />\n      </svg>\n    );\n  },\n);\n\nClipboardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardFill;\n"
  },
  {
    "path": "src/icons/clipboard-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zm4 5.982c1.664-1.673 5.825 1.254 0 5.018-5.825-3.764-1.664-6.69 0-5.018\"\n        />\n      </svg>\n    );\n  },\n);\n\nClipboardHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardHeartFill;\n"
  },
  {
    "path": "src/icons/clipboard-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 1.5A1.5 1.5 0 0 1 6.5 0h3A1.5 1.5 0 0 1 11 1.5v1A1.5 1.5 0 0 1 9.5 4h-3A1.5 1.5 0 0 1 5 2.5zm5 0a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z\"\n        />\n        <path d=\"M3 1.5h1v1H3a1 1 0 0 0-1 1V14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3.5a1 1 0 0 0-1-1h-1v-1h1a2 2 0 0 1 2 2V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3.5a2 2 0 0 1 2-2\" />\n        <path d=\"M8 6.982C9.664 5.309 13.825 8.236 8 12 2.175 8.236 6.336 5.31 8 6.982\" />\n      </svg>\n    );\n  },\n);\n\nClipboardHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardHeart;\n"
  },
  {
    "path": "src/icons/clipboard-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zM6 9h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nClipboardMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardMinusFill;\n"
  },
  {
    "path": "src/icons/clipboard-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.5 9.5A.5.5 0 0 1 6 9h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardMinus;\n"
  },
  {
    "path": "src/icons/clipboard-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zm4.5 6V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nClipboardPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardPlusFill;\n"
  },
  {
    "path": "src/icons/clipboard-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 7a.5.5 0 0 1 .5.5V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5A.5.5 0 0 1 8 7\"\n        />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardPlus;\n"
  },
  {
    "path": "src/icons/clipboard-pulse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardPulse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-pulse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10 1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5zm-5 0A1.5 1.5 0 0 1 6.5 0h3A1.5 1.5 0 0 1 11 1.5v1A1.5 1.5 0 0 1 9.5 4h-3A1.5 1.5 0 0 1 5 2.5zm-2 0h1v1H3a1 1 0 0 0-1 1V14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3.5a1 1 0 0 0-1-1h-1v-1h1a2 2 0 0 1 2 2V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3.5a2 2 0 0 1 2-2m6.979 3.856a.5.5 0 0 0-.968.04L7.92 10.49l-.94-3.135a.5.5 0 0 0-.895-.133L4.232 10H3.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .416-.223l1.41-2.115 1.195 3.982a.5.5 0 0 0 .968-.04L9.58 7.51l.94 3.135A.5.5 0 0 0 11 11h1.5a.5.5 0 0 0 0-1h-1.128z\"\n        />\n      </svg>\n    );\n  },\n);\n\nClipboardPulse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardPulse;\n"
  },
  {
    "path": "src/icons/clipboard-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5zm4 7.793 1.146-1.147a.5.5 0 1 1 .708.708L8.707 10l1.147 1.146a.5.5 0 0 1-.708.708L8 10.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 10 6.146 8.854a.5.5 0 1 1 .708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardXFill;\n"
  },
  {
    "path": "src/icons/clipboard-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClipboardX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.146 7.146a.5.5 0 0 1 .708 0L8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 0 1 0-.708\"\n        />\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboardX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClipboardX;\n"
  },
  {
    "path": "src/icons/clipboard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z\" />\n        <path d=\"M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard;\n"
  },
  {
    "path": "src/icons/clipboard2-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2CheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5m6.769 6.854-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2CheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2CheckFill;\n"
  },
  {
    "path": "src/icons/clipboard2-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Check = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Check.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Check;\n"
  },
  {
    "path": "src/icons/clipboard2-data-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2DataFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-data-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5M10 7a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0zm-6 4a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0zm4-3a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2DataFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2DataFill;\n"
  },
  {
    "path": "src/icons/clipboard2-data.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Data = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-data', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M10 7a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0zm-6 4a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0zm4-3a1 1 0 0 0-1 1v3a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Data.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Data;\n"
  },
  {
    "path": "src/icons/clipboard2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3.5 1h.585A1.5 1.5 0 0 0 4 1.5V2a1.5 1.5 0 0 0 1.5 1.5h5A1.5 1.5 0 0 0 12 2v-.5q-.001-.264-.085-.5h.585A1.5 1.5 0 0 1 14 2.5v12a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-12A1.5 1.5 0 0 1 3.5 1\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Fill;\n"
  },
  {
    "path": "src/icons/clipboard2-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2HeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.058.501a.5.5 0 0 0-.5-.501h-2.98c-.276 0-.5.225-.5.501A.5.5 0 0 1 5.582 1a.497.497 0 0 0-.497.497V2a.5.5 0 0 0 .5.5h4.968a.5.5 0 0 0 .5-.5v-.503A.497.497 0 0 0 10.555 1a.5.5 0 0 1-.497-.499\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.174 1h-.57a1.5 1.5 0 0 0-1.5 1.5v12a1.5 1.5 0 0 0 1.5 1.5h9a1.5 1.5 0 0 0 1.5-1.5v-12a1.5 1.5 0 0 0-1.5-1.5h-.642q.084.236.085.5V2c0 .828-.668 1.5-1.492 1.5H5.581A1.496 1.496 0 0 1 4.09 2v-.5q.001-.264.085-.5Zm3.894 5.482c1.656-1.673 5.795 1.254 0 5.018-5.795-3.764-1.656-6.69 0-5.018\"\n        />\n      </svg>\n    );\n  },\n);\n\nClipboard2HeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2HeartFill;\n"
  },
  {
    "path": "src/icons/clipboard2-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Heart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.058.501a.5.5 0 0 0-.5-.501h-2.98c-.276 0-.5.225-.5.501A.5.5 0 0 1 5.582 1a.497.497 0 0 0-.497.497V2a.5.5 0 0 0 .5.5h4.968a.5.5 0 0 0 .5-.5v-.503A.497.497 0 0 0 10.555 1a.5.5 0 0 1-.497-.499\" />\n        <path d=\"M3.605 2a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-12a.5.5 0 0 0-.5-.5h-.5a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 1 1.5 1.5v12a1.5 1.5 0 0 1-1.5 1.5h-9a1.5 1.5 0 0 1-1.5-1.5v-12a1.5 1.5 0 0 1 1.5-1.5h.5a.5.5 0 0 1 0 1z\" />\n        <path d=\"M8.068 6.482c1.656-1.673 5.795 1.254 0 5.018-5.795-3.764-1.656-6.69 0-5.018\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Heart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Heart;\n"
  },
  {
    "path": "src/icons/clipboard2-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2MinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5M6 8h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2MinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2MinusFill;\n"
  },
  {
    "path": "src/icons/clipboard2-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Minus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M6 8a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Minus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Minus;\n"
  },
  {
    "path": "src/icons/clipboard2-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2PlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5M8.5 6.5V8H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V9H6a.5.5 0 0 1 0-1h1.5V6.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2PlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2PlusFill;\n"
  },
  {
    "path": "src/icons/clipboard2-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Plus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M8.5 6.5a.5.5 0 0 0-1 0V8H6a.5.5 0 0 0 0 1h1.5v1.5a.5.5 0 0 0 1 0V9H10a.5.5 0 0 0 0-1H8.5z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Plus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Plus;\n"
  },
  {
    "path": "src/icons/clipboard2-pulse-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2PulseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-pulse-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5M9.98 5.356 11.372 10h.128a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.479-.356l-.94-3.135-1.092 5.096a.5.5 0 0 1-.968.039L6.383 8.85l-.936 1.873A.5.5 0 0 1 5 11h-.5a.5.5 0 0 1 0-1h.191l1.362-2.724a.5.5 0 0 1 .926.08l.94 3.135 1.092-5.096a.5.5 0 0 1 .968-.039Z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2PulseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2PulseFill;\n"
  },
  {
    "path": "src/icons/clipboard2-pulse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2Pulse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-pulse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M9.979 5.356a.5.5 0 0 0-.968.04L7.92 10.49l-.94-3.135a.5.5 0 0 0-.926-.08L4.69 10H4.5a.5.5 0 0 0 0 1H5a.5.5 0 0 0 .447-.276l.936-1.873 1.138 3.793a.5.5 0 0 0 .968-.04L9.58 7.51l.94 3.135A.5.5 0 0 0 11 11h.5a.5.5 0 0 0 0-1h-.128z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2Pulse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2Pulse;\n"
  },
  {
    "path": "src/icons/clipboard2-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2XFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4.085 1H3.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1h-.585q.084.236.085.5V2a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 2v-.5q.001-.264.085-.5M8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 1 1 .708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2XFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2XFill;\n"
  },
  {
    "path": "src/icons/clipboard2-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2X = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M8 8.293 6.854 7.146a.5.5 0 1 0-.708.708L7.293 9l-1.147 1.146a.5.5 0 0 0 .708.708L8 9.707l1.146 1.147a.5.5 0 0 0 .708-.708L8.707 9l1.147-1.146a.5.5 0 0 0-.708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2X.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2X;\n"
  },
  {
    "path": "src/icons/clipboard2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clipboard2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clipboard2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 2a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-12a.5.5 0 0 0-.5-.5H12a.5.5 0 0 1 0-1h.5A1.5 1.5 0 0 1 14 2.5v12a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-12A1.5 1.5 0 0 1 3.5 1H4a.5.5 0 0 1 0 1z\" />\n        <path d=\"M10 .5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V2a.5.5 0 0 0 .5.5h5A.5.5 0 0 0 11 2v-.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nClipboard2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clipboard2;\n"
  },
  {
    "path": "src/icons/clock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clock-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z\" />\n      </svg>\n    );\n  },\n);\n\nClockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClockFill;\n"
  },
  {
    "path": "src/icons/clock-history.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ClockHistory = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clock-history', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.515 1.019A7 7 0 0 0 8 1V0a8 8 0 0 1 .589.022zm2.004.45a7 7 0 0 0-.985-.299l.219-.976q.576.129 1.126.342zm1.37.71a7 7 0 0 0-.439-.27l.493-.87a8 8 0 0 1 .979.654l-.615.789a7 7 0 0 0-.418-.302zm1.834 1.79a7 7 0 0 0-.653-.796l.724-.69q.406.429.747.91zm.744 1.352a7 7 0 0 0-.214-.468l.893-.45a8 8 0 0 1 .45 1.088l-.95.313a7 7 0 0 0-.179-.483m.53 2.507a7 7 0 0 0-.1-1.025l.985-.17q.1.58.116 1.17zm-.131 1.538q.05-.254.081-.51l.993.123a8 8 0 0 1-.23 1.155l-.964-.267q.069-.247.12-.501m-.952 2.379q.276-.436.486-.908l.914.405q-.24.54-.555 1.038zm-.964 1.205q.183-.183.35-.378l.758.653a8 8 0 0 1-.401.432z\" />\n        <path d=\"M8 1a7 7 0 1 0 4.95 11.95l.707.707A8.001 8.001 0 1 1 8 0z\" />\n        <path d=\"M7.5 3a.5.5 0 0 1 .5.5v5.21l3.248 1.856a.5.5 0 0 1-.496.868l-3.5-2A.5.5 0 0 1 7 9V3.5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nClockHistory.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ClockHistory;\n"
  },
  {
    "path": "src/icons/clock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0\" />\n      </svg>\n    );\n  },\n);\n\nClock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clock;\n"
  },
  {
    "path": "src/icons/cloud-arrow-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudArrowDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-arrow-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2m2.354 6.854-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 9.293V5.5a.5.5 0 0 1 1 0v3.793l1.146-1.147a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nCloudArrowDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudArrowDownFill;\n"
  },
  {
    "path": "src/icons/cloud-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 10.854a.5.5 0 0 0 .708 0l2-2a.5.5 0 0 0-.708-.708L8.5 9.293V5.5a.5.5 0 0 0-1 0v3.793L6.354 8.146a.5.5 0 1 0-.708.708z\"\n        />\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudArrowDown;\n"
  },
  {
    "path": "src/icons/cloud-arrow-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudArrowUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-arrow-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2m2.354 5.146a.5.5 0 0 1-.708.708L8.5 6.707V10.5a.5.5 0 0 1-1 0V6.707L6.354 7.854a.5.5 0 1 1-.708-.708l2-2a.5.5 0 0 1 .708 0z\" />\n      </svg>\n    );\n  },\n);\n\nCloudArrowUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudArrowUpFill;\n"
  },
  {
    "path": "src/icons/cloud-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 5.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 6.707V10.5a.5.5 0 0 1-1 0V6.707L6.354 7.854a.5.5 0 1 1-.708-.708z\"\n        />\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudArrowUp;\n"
  },
  {
    "path": "src/icons/cloud-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2m2.354 4.854-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7 8.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nCloudCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudCheckFill;\n"
  },
  {
    "path": "src/icons/cloud-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.354 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7 8.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudCheck;\n"
  },
  {
    "path": "src/icons/cloud-download-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudDownloadFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-download-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 4.095 0 5.555 0 7.318 0 9.366 1.708 11 3.781 11H7.5V5.5a.5.5 0 0 1 1 0V11h4.188C14.502 11 16 9.57 16 7.773c0-1.636-1.242-2.969-2.834-3.194C12.923 1.999 10.69 0 8 0m-.354 15.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 14.293V11h-1v3.293l-2.146-2.147a.5.5 0 0 0-.708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCloudDownloadFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudDownloadFill;\n"
  },
  {
    "path": "src/icons/cloud-download.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudDownload = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-download', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.406 1.342A5.53 5.53 0 0 1 8 0c2.69 0 4.923 2 5.166 4.579C14.758 4.804 16 6.137 16 7.773 16 9.569 14.502 11 12.687 11H10a.5.5 0 0 1 0-1h2.688C13.979 10 15 8.988 15 7.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 2.825 10.328 1 8 1a4.53 4.53 0 0 0-2.941 1.1c-.757.652-1.153 1.438-1.153 2.055v.448l-.445.049C2.064 4.805 1 5.952 1 7.318 1 8.785 2.23 10 3.781 10H6a.5.5 0 0 1 0 1H3.781C1.708 11 0 9.366 0 7.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383\" />\n        <path d=\"M7.646 15.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 14.293V5.5a.5.5 0 0 0-1 0v8.793l-2.146-2.147a.5.5 0 0 0-.708.708z\" />\n      </svg>\n    );\n  },\n);\n\nCloudDownload.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudDownload;\n"
  },
  {
    "path": "src/icons/cloud-drizzle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudDrizzleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-drizzle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.158 12.025a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m6 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m-3.5 1.5a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m6 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m.747-8.498a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 11H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudDrizzleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudDrizzleFill;\n"
  },
  {
    "path": "src/icons/cloud-drizzle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudDrizzle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-drizzle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.158 12.025a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m6 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m-3.5 1.5a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m6 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m.747-8.498a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 11H13a3 3 0 0 0 .405-5.973M8.5 2a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 2\" />\n      </svg>\n    );\n  },\n);\n\nCloudDrizzle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudDrizzle;\n"
  },
  {
    "path": "src/icons/cloud-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383\" />\n      </svg>\n    );\n  },\n);\n\nCloudFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudFill;\n"
  },
  {
    "path": "src/icons/cloud-fog-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudFogFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-fog-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 13.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m10.405-9.473a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 12H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudFogFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudFogFill;\n"
  },
  {
    "path": "src/icons/cloud-fog.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudFog = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-fog', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 13.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m10.405-9.473a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 12H13a3 3 0 0 0 .405-5.973M8.5 3a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 3\" />\n      </svg>\n    );\n  },\n);\n\nCloudFog.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudFog;\n"
  },
  {
    "path": "src/icons/cloud-fog2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudFog2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-fog2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 3a5 5 0 0 1 4.905 4.027A3 3 0 0 1 13 13h-1.5a.5.5 0 0 0 0-1H1.05a3.5 3.5 0 0 1-.713-1H9.5a.5.5 0 0 0 0-1H.035a3.5 3.5 0 0 1 0-1H7.5a.5.5 0 0 0 0-1H.337a3.5 3.5 0 0 1 3.57-1.977A5 5 0 0 1 8.5 3\" />\n      </svg>\n    );\n  },\n);\n\nCloudFog2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudFog2Fill;\n"
  },
  {
    "path": "src/icons/cloud-fog2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudFog2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-fog2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 4a4 4 0 0 0-3.8 2.745.5.5 0 1 1-.949-.313 5.002 5.002 0 0 1 9.654.595A3 3 0 0 1 13 13H.5a.5.5 0 0 1 0-1H13a2 2 0 0 0 .001-4h-.026a.5.5 0 0 1-.5-.445A4 4 0 0 0 8.5 4M0 8.5A.5.5 0 0 1 .5 8h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCloudFog2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudFog2;\n"
  },
  {
    "path": "src/icons/cloud-hail-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHailFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-hail-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.75 15.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316M7.75 15.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m3.592 3.724a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m1.247-6.999a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10.5H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudHailFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHailFill;\n"
  },
  {
    "path": "src/icons/cloud-hail.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHail = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-hail', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 4.527a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10.5H13a3 3 0 0 0 .405-5.973M8.5 1.5a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1-.001 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1.5M3.75 15.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316M7.75 15.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m3.592 3.724a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.408-3.724a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316\" />\n      </svg>\n    );\n  },\n);\n\nCloudHail.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHail;\n"
  },
  {
    "path": "src/icons/cloud-haze-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHazeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-haze-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-3 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m2 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M13.405 4.027a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudHazeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHazeFill;\n"
  },
  {
    "path": "src/icons/cloud-haze.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHaze = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-haze', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-3 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m2 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M13.405 4.027a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973M8.5 1a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1\" />\n      </svg>\n    );\n  },\n);\n\nCloudHaze.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHaze;\n"
  },
  {
    "path": "src/icons/cloud-haze2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHaze2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-haze2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 2a5 5 0 0 1 4.905 4.027A3 3 0 0 1 13 12H3.5A3.5 3.5 0 0 1 .035 9H5.5a.5.5 0 0 0 0-1H.035a3.5 3.5 0 0 1 3.871-2.977A5 5 0 0 1 8.5 2m-6 8a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zM0 13.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCloudHaze2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHaze2Fill;\n"
  },
  {
    "path": "src/icons/cloud-haze2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudHaze2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-haze2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 3a4 4 0 0 0-3.8 2.745.5.5 0 1 1-.949-.313 5.002 5.002 0 0 1 9.654.595A3 3 0 0 1 13 12H4.5a.5.5 0 0 1 0-1H13a2 2 0 0 0 .001-4h-.026a.5.5 0 0 1-.5-.445A4 4 0 0 0 8.5 3M0 7.5A.5.5 0 0 1 .5 7h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m2 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-2 4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCloudHaze2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudHaze2;\n"
  },
  {
    "path": "src/icons/cloud-lightning-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudLightningFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-lightning-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.053 11.276A.5.5 0 0 1 7.5 11h1a.5.5 0 0 1 .474.658l-.28.842H9.5a.5.5 0 0 1 .39.812l-2 2.5a.5.5 0 0 1-.875-.433L7.36 14H6.5a.5.5 0 0 1-.447-.724zm6.352-7.249a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudLightningFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudLightningFill;\n"
  },
  {
    "path": "src/icons/cloud-lightning-rain-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudLightningRainFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-lightning-rain-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.658 11.026a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m9.5 0a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m-7.5 1.5a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m9.5 0a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m-7.105-1.25A.5.5 0 0 1 7.5 11h1a.5.5 0 0 1 .474.658l-.28.842H9.5a.5.5 0 0 1 .39.812l-2 2.5a.5.5 0 0 1-.875-.433L7.36 14H6.5a.5.5 0 0 1-.447-.724zm6.352-7.249a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudLightningRainFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudLightningRainFill;\n"
  },
  {
    "path": "src/icons/cloud-lightning-rain.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudLightningRain = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-lightning-rain', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.658 11.026a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m9.5 0a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m-7.5 1.5a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m9.5 0a.5.5 0 0 1 .316.632l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.316m-.753-8.499a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973M8.5 1a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1M7.053 11.276A.5.5 0 0 1 7.5 11h1a.5.5 0 0 1 .474.658l-.28.842H9.5a.5.5 0 0 1 .39.812l-2 2.5a.5.5 0 0 1-.875-.433L7.36 14H6.5a.5.5 0 0 1-.447-.724z\" />\n      </svg>\n    );\n  },\n);\n\nCloudLightningRain.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudLightningRain;\n"
  },
  {
    "path": "src/icons/cloud-lightning.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudLightning = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-lightning', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 4.027a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973M8.5 1a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1M7.053 11.276A.5.5 0 0 1 7.5 11h1a.5.5 0 0 1 .474.658l-.28.842H9.5a.5.5 0 0 1 .39.812l-2 2.5a.5.5 0 0 1-.875-.433L7.36 14H6.5a.5.5 0 0 1-.447-.724z\" />\n      </svg>\n    );\n  },\n);\n\nCloudLightning.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudLightning;\n"
  },
  {
    "path": "src/icons/cloud-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2M6 7.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nCloudMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudMinusFill;\n"
  },
  {
    "path": "src/icons/cloud-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n        <path d=\"M6 7.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudMinus;\n"
  },
  {
    "path": "src/icons/cloud-moon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudMoonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-moon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.473 11a4.5 4.5 0 0 0-8.72-.99A3 3 0 0 0 3 16h8.5a2.5 2.5 0 0 0 0-5z\" />\n        <path d=\"M11.286 1.778a.5.5 0 0 0-.565-.755 4.595 4.595 0 0 0-3.18 5.003 5.5 5.5 0 0 1 1.055.209A3.6 3.6 0 0 1 9.83 2.617a4.593 4.593 0 0 0 4.31 5.744 3.58 3.58 0 0 1-2.241.634q.244.477.394 1a4.59 4.59 0 0 0 3.624-2.04.5.5 0 0 0-.565-.755 3.593 3.593 0 0 1-4.065-5.422z\" />\n      </svg>\n    );\n  },\n);\n\nCloudMoonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudMoonFill;\n"
  },
  {
    "path": "src/icons/cloud-moon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudMoon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-moon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 8a3.5 3.5 0 0 1 3.5 3.555.5.5 0 0 0 .625.492A1.503 1.503 0 0 1 13 13.5a1.5 1.5 0 0 1-1.5 1.5H3a2 2 0 1 1 .1-3.998.5.5 0 0 0 .509-.375A3.5 3.5 0 0 1 7 8m4.473 3a4.5 4.5 0 0 0-8.72-.99A3 3 0 0 0 3 16h8.5a2.5 2.5 0 0 0 0-5z\" />\n        <path d=\"M11.286 1.778a.5.5 0 0 0-.565-.755 4.595 4.595 0 0 0-3.18 5.003 5.5 5.5 0 0 1 1.055.209A3.6 3.6 0 0 1 9.83 2.617a4.593 4.593 0 0 0 4.31 5.744 3.58 3.58 0 0 1-2.241.634q.244.477.394 1a4.59 4.59 0 0 0 3.624-2.04.5.5 0 0 0-.565-.755 3.593 3.593 0 0 1-4.065-5.422z\" />\n      </svg>\n    );\n  },\n);\n\nCloudMoon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudMoon;\n"
  },
  {
    "path": "src/icons/cloud-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2m.5 4v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nCloudPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudPlusFill;\n"
  },
  {
    "path": "src/icons/cloud-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 5.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudPlus;\n"
  },
  {
    "path": "src/icons/cloud-rain-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudRainFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-rain-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.158 12.025a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-1 3a.5.5 0 1 1-.948-.316l1-3a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 1 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-1 3a.5.5 0 1 1-.948-.316l1-3a.5.5 0 0 1 .632-.317m.247-6.998a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 11H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudRainFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudRainFill;\n"
  },
  {
    "path": "src/icons/cloud-rain-heavy-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudRainHeavyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-rain-heavy-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.176 11.032a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 0 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 0 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 0 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 0 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m.229-7.005a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudRainHeavyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudRainHeavyFill;\n"
  },
  {
    "path": "src/icons/cloud-rain-heavy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudRainHeavy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-rain-heavy', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.176 11.032a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 1 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 1 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 1 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m3 0a.5.5 0 0 1 .292.643l-1.5 4a.5.5 0 0 1-.936-.35l1.5-4a.5.5 0 0 1 .644-.293m.229-7.005a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973M8.5 1a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1\" />\n      </svg>\n    );\n  },\n);\n\nCloudRainHeavy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudRainHeavy;\n"
  },
  {
    "path": "src/icons/cloud-rain.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudRain = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-rain', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.158 12.025a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-1 3a.5.5 0 0 1-.948-.316l1-3a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-.5 1.5a.5.5 0 0 1-.948-.316l.5-1.5a.5.5 0 0 1 .632-.317m3 0a.5.5 0 0 1 .316.633l-1 3a.5.5 0 1 1-.948-.316l1-3a.5.5 0 0 1 .632-.317m.247-6.998a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 11H13a3 3 0 0 0 .405-5.973M8.5 2a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 2\" />\n      </svg>\n    );\n  },\n);\n\nCloudRain.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudRain;\n"
  },
  {
    "path": "src/icons/cloud-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.112 5.112a3 3 0 0 0-.17.613C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13H11zm11.372 7.372L4.937 2.937A5.5 5.5 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773a3.2 3.2 0 0 1-1.516 2.711m-.838 1.87-12-12 .708-.708 12 12z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCloudSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSlashFill;\n"
  },
  {
    "path": "src/icons/cloud-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.112 5.112a3 3 0 0 0-.17.613C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13H11l-1-1H3.781C2.231 12 1 10.785 1 9.318c0-1.365 1.064-2.513 2.46-2.666l.446-.05v-.447q0-.113.018-.231zm2.55-1.45-.725-.725A5.5 5.5 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773a3.2 3.2 0 0 1-1.516 2.711l-.733-.733C14.498 11.378 15 10.626 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3c-.875 0-1.678.26-2.339.661z\"\n        />\n        <path d=\"m13.646 14.354-12-12 .708-.708 12 12z\" />\n      </svg>\n    );\n  },\n);\n\nCloudSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSlash;\n"
  },
  {
    "path": "src/icons/cloud-sleet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSleetFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-sleet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.375 13.5a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 1 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 1 1-.248-.434l.495-.283-.495-.283a.25.25 0 1 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 0 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223zM6.375 13.5a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 1 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 1 1-.248-.434l.495-.283-.495-.283a.25.25 0 1 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 0 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223zm2.151 2.447a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 1 1-.248.434l-.501-.286v.569a.25.25 0 0 1-.5 0v-.57l-.501.287a.25.25 0 1 1-.248-.434l.495-.283-.495-.283a.25.25 0 1 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 1 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223zm1.181-7.026a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudSleetFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSleetFill;\n"
  },
  {
    "path": "src/icons/cloud-sleet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSleet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-sleet', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 4.027a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10H13a3 3 0 0 0 .405-5.973M8.5 1a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1 0 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1M2.375 13.5a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 1 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223zM6.375 13.5a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 1 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223zm2.151 2.447a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m1.849-2.447a.5.5 0 0 1 .223.67l-.5 1a.5.5 0 1 1-.894-.447l.5-1a.5.5 0 0 1 .67-.223z\" />\n      </svg>\n    );\n  },\n);\n\nCloudSleet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSleet;\n"
  },
  {
    "path": "src/icons/cloud-snow-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSnowFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-snow-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.625 11.5a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m2.75 2a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m5.5 0a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 0 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m-2.75-2a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m5.5 0a.25.25 0 0 1 .25.25v.57l.5-.287a.25.25 0 0 1 .249.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 0 1-.5 0v-.57l-.501.287a.25.25 0 1 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m-.22-7.223a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10.25H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudSnowFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSnowFill;\n"
  },
  {
    "path": "src/icons/cloud-snow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSnow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-snow', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 4.277a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 10.25H13a3 3 0 0 0 .405-5.973M8.5 1.25a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1-.001 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 1.25M2.625 11.5a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m2.75 2a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m5.5 0a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m-2.75-2a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25m5.5 0a.25.25 0 0 1 .25.25v.57l.501-.287a.25.25 0 0 1 .248.434l-.495.283.495.283a.25.25 0 0 1-.248.434l-.501-.286v.569a.25.25 0 1 1-.5 0v-.57l-.501.287a.25.25 0 0 1-.248-.434l.495-.283-.495-.283a.25.25 0 0 1 .248-.434l.501.286v-.569a.25.25 0 0 1 .25-.25\" />\n      </svg>\n    );\n  },\n);\n\nCloudSnow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSnow;\n"
  },
  {
    "path": "src/icons/cloud-sun-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSunFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-sun-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.473 11a4.5 4.5 0 0 0-8.72-.99A3 3 0 0 0 3 16h8.5a2.5 2.5 0 0 0 0-5z\" />\n        <path d=\"M10.5 1.5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0zm3.743 1.964a.5.5 0 1 0-.707-.707l-.708.707a.5.5 0 0 0 .708.708zm-7.779-.707a.5.5 0 0 0-.707.707l.707.708a.5.5 0 1 0 .708-.708zm1.734 3.374a2 2 0 1 1 3.296 2.198q.3.423.516.898a3 3 0 1 0-4.84-3.225q.529.017 1.028.129m4.484 4.074c.6.215 1.125.59 1.522 1.072a.5.5 0 0 0 .039-.742l-.707-.707a.5.5 0 0 0-.854.377M14.5 6.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudSunFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSunFill;\n"
  },
  {
    "path": "src/icons/cloud-sun.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudSun = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-sun', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 8a3.5 3.5 0 0 1 3.5 3.555.5.5 0 0 0 .624.492A1.503 1.503 0 0 1 13 13.5a1.5 1.5 0 0 1-1.5 1.5H3a2 2 0 1 1 .1-3.998.5.5 0 0 0 .51-.375A3.5 3.5 0 0 1 7 8m4.473 3a4.5 4.5 0 0 0-8.72-.99A3 3 0 0 0 3 16h8.5a2.5 2.5 0 0 0 0-5z\" />\n        <path d=\"M10.5 1.5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0zm3.743 1.964a.5.5 0 1 0-.707-.707l-.708.707a.5.5 0 0 0 .708.708zm-7.779-.707a.5.5 0 0 0-.707.707l.707.708a.5.5 0 1 0 .708-.708zm1.734 3.374a2 2 0 1 1 3.296 2.198q.3.423.516.898a3 3 0 1 0-4.84-3.225q.529.017 1.028.129m4.484 4.074c.6.215 1.125.59 1.522 1.072a.5.5 0 0 0 .039-.742l-.707-.707a.5.5 0 0 0-.854.377M14.5 6.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nCloudSun.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudSun;\n"
  },
  {
    "path": "src/icons/cloud-upload-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudUploadFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-upload-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 4.095 0 5.555 0 7.318 0 9.366 1.708 11 3.781 11H7.5V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11h4.188C14.502 11 16 9.57 16 7.773c0-1.636-1.242-2.969-2.834-3.194C12.923 1.999 10.69 0 8 0m-.5 14.5V11h1v3.5a.5.5 0 0 1-1 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nCloudUploadFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudUploadFill;\n"
  },
  {
    "path": "src/icons/cloud-upload.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudUpload = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud-upload', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.406 1.342A5.53 5.53 0 0 1 8 0c2.69 0 4.923 2 5.166 4.579C14.758 4.804 16 6.137 16 7.773 16 9.569 14.502 11 12.687 11H10a.5.5 0 0 1 0-1h2.688C13.979 10 15 8.988 15 7.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 2.825 10.328 1 8 1a4.53 4.53 0 0 0-2.941 1.1c-.757.652-1.153 1.438-1.153 2.055v.448l-.445.049C2.064 4.805 1 5.952 1 7.318 1 8.785 2.23 10 3.781 10H6a.5.5 0 0 1 0 1H3.781C1.708 11 0 9.366 0 7.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.646 4.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V14.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCloudUpload.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudUpload;\n"
  },
  {
    "path": "src/icons/cloud.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cloud = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloud', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nCloud.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cloud;\n"
  },
  {
    "path": "src/icons/clouds-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clouds-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.473 9a4.5 4.5 0 0 0-8.72-.99A3 3 0 0 0 3 14h8.5a2.5 2.5 0 1 0-.027-5\" />\n        <path d=\"M14.544 9.772a3.5 3.5 0 0 0-2.225-1.676 5.5 5.5 0 0 0-6.337-4.002 4.002 4.002 0 0 1 7.392.91 2.5 2.5 0 0 1 1.17 4.769z\" />\n      </svg>\n    );\n  },\n);\n\nCloudsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudsFill;\n"
  },
  {
    "path": "src/icons/clouds.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Clouds = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-clouds', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 7.5a2.5 2.5 0 0 1-1.456 2.272 3.5 3.5 0 0 0-.65-.824 1.5 1.5 0 0 0-.789-2.896.5.5 0 0 1-.627-.421 3 3 0 0 0-5.22-1.625 5.6 5.6 0 0 0-1.276.088 4.002 4.002 0 0 1 7.392.91A2.5 2.5 0 0 1 16 7.5\" />\n        <path d=\"M7 5a4.5 4.5 0 0 1 4.473 4h.027a2.5 2.5 0 0 1 0 5H3a3 3 0 0 1-.247-5.99A4.5 4.5 0 0 1 7 5m3.5 4.5a3.5 3.5 0 0 0-6.89-.873.5.5 0 0 1-.51.375A2 2 0 1 0 3 13h8.5a1.5 1.5 0 1 0-.376-2.953.5.5 0 0 1-.624-.492z\" />\n      </svg>\n    );\n  },\n);\n\nClouds.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Clouds;\n"
  },
  {
    "path": "src/icons/cloudy-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CloudyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloudy-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 7.027a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 13H13a3 3 0 0 0 .405-5.973\" />\n      </svg>\n    );\n  },\n);\n\nCloudyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CloudyFill;\n"
  },
  {
    "path": "src/icons/cloudy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cloudy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cloudy', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.405 8.527a5.001 5.001 0 0 0-9.499-1.004A3.5 3.5 0 1 0 3.5 14.5H13a3 3 0 0 0 .405-5.973M8.5 5.5a4 4 0 0 1 3.976 3.555.5.5 0 0 0 .5.445H13a2 2 0 0 1-.001 4H3.5a2.5 2.5 0 1 1 .605-4.926.5.5 0 0 0 .596-.329A4 4 0 0 1 8.5 5.5\" />\n      </svg>\n    );\n  },\n);\n\nCloudy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cloudy;\n"
  },
  {
    "path": "src/icons/code-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CodeSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-code-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.478 1.647a.5.5 0 1 0-.956-.294l-4 13a.5.5 0 0 0 .956.294zM4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0m6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nCodeSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CodeSlash;\n"
  },
  {
    "path": "src/icons/code-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CodeSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-code-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M6.854 4.646a.5.5 0 0 1 0 .708L4.207 8l2.647 2.646a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0m2.292 0a.5.5 0 0 0 0 .708L11.793 8l-2.647 2.646a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nCodeSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CodeSquare;\n"
  },
  {
    "path": "src/icons/code.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Code = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-code', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.854 4.854a.5.5 0 1 0-.708-.708l-3.5 3.5a.5.5 0 0 0 0 .708l3.5 3.5a.5.5 0 0 0 .708-.708L2.707 8zm4.292 0a.5.5 0 0 1 .708-.708l3.5 3.5a.5.5 0 0 1 0 .708l-3.5 3.5a.5.5 0 0 1-.708-.708L13.293 8z\" />\n      </svg>\n    );\n  },\n);\n\nCode.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Code;\n"
  },
  {
    "path": "src/icons/coin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Coin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-coin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 9.511c.076.954.83 1.697 2.182 1.785V12h.6v-.709c1.4-.098 2.218-.846 2.218-1.932 0-.987-.626-1.496-1.745-1.76l-.473-.112V5.57c.6.068.982.396 1.074.85h1.052c-.076-.919-.864-1.638-2.126-1.716V4h-.6v.719c-1.195.117-2.01.836-2.01 1.853 0 .9.606 1.472 1.613 1.707l.397.098v2.034c-.615-.093-1.022-.43-1.114-.9zm2.177-2.166c-.59-.137-.91-.416-.91-.836 0-.47.345-.822.915-.925v1.76h-.005zm.692 1.193c.717.166 1.048.435 1.048.91 0 .542-.412.914-1.135.982V8.518z\" />\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M8 13.5a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11m0 .5A6 6 0 1 0 8 2a6 6 0 0 0 0 12\" />\n      </svg>\n    );\n  },\n);\n\nCoin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Coin;\n"
  },
  {
    "path": "src/icons/collection-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CollectionFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-collection-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6zM2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3m2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1\" />\n      </svg>\n    );\n  },\n);\n\nCollectionFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CollectionFill;\n"
  },
  {
    "path": "src/icons/collection-play-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CollectionPlayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-collection-play-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6zm6.258-6.437a.5.5 0 0 1 .507.013l4 2.5a.5.5 0 0 1 0 .848l-4 2.5A.5.5 0 0 1 6 12V7a.5.5 0 0 1 .258-.437\" />\n      </svg>\n    );\n  },\n);\n\nCollectionPlayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CollectionPlayFill;\n"
  },
  {
    "path": "src/icons/collection-play.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CollectionPlay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-collection-play', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3m2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1m2.765 5.576A.5.5 0 0 0 6 7v5a.5.5 0 0 0 .765.424l4-2.5a.5.5 0 0 0 0-.848z\" />\n        <path d=\"M1.5 14.5A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5zm13-1a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5h-13A.5.5 0 0 0 1 6v7a.5.5 0 0 0 .5.5z\" />\n      </svg>\n    );\n  },\n);\n\nCollectionPlay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CollectionPlay;\n"
  },
  {
    "path": "src/icons/collection.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Collection = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-collection', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nCollection.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Collection;\n"
  },
  {
    "path": "src/icons/columns-gap.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ColumnsGap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-columns-gap', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 1v3H1V1zM1 0a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm14 12v3h-5v-3zm-5-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zM6 8v7H1V8zM1 7a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1zm14-6v7h-5V1zm-5-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nColumnsGap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ColumnsGap;\n"
  },
  {
    "path": "src/icons/columns.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Columns = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-columns', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm8.5 0v8H15V2zm0 9v3H15v-3zm-1-9H1v3h6.5zM1 14h6.5V6H1z\" />\n      </svg>\n    );\n  },\n);\n\nColumns.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Columns;\n"
  },
  {
    "path": "src/icons/command.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Command = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-command', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 2A1.5 1.5 0 0 1 5 3.5V5H3.5a1.5 1.5 0 1 1 0-3M6 5V3.5A2.5 2.5 0 1 0 3.5 6H5v4H3.5A2.5 2.5 0 1 0 6 12.5V11h4v1.5a2.5 2.5 0 1 0 2.5-2.5H11V6h1.5A2.5 2.5 0 1 0 10 3.5V5zm4 1v4H6V6zm1-1V3.5A1.5 1.5 0 1 1 12.5 5zm0 6h1.5a1.5 1.5 0 1 1-1.5 1.5zm-6 0v1.5A1.5 1.5 0 1 1 3.5 11z\" />\n      </svg>\n    );\n  },\n);\n\nCommand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Command;\n"
  },
  {
    "path": "src/icons/compass-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CompassFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-compass-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.5 8.516a7.5 7.5 0 1 1-9.462-7.24A1 1 0 0 1 7 0h2a1 1 0 0 1 .962 1.276 7.5 7.5 0 0 1 5.538 7.24m-3.61-3.905L6.94 7.439 4.11 12.39l4.95-2.828 2.828-4.95z\" />\n      </svg>\n    );\n  },\n);\n\nCompassFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CompassFill;\n"
  },
  {
    "path": "src/icons/compass.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Compass = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-compass', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16.016a7.5 7.5 0 0 0 1.962-14.74A1 1 0 0 0 9 0H7a1 1 0 0 0-.962 1.276A7.5 7.5 0 0 0 8 16.016m6.5-7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0\" />\n        <path d=\"m6.94 7.44 4.95-2.83-2.83 4.95-4.949 2.83 2.828-4.95z\" />\n      </svg>\n    );\n  },\n);\n\nCompass.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Compass;\n"
  },
  {
    "path": "src/icons/cone-striped.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ConeStriped = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cone-striped', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m9.97 4.88.953 3.811C10.159 8.878 9.14 9 8 9s-2.158-.122-2.923-.309L6.03 4.88C6.635 4.957 7.3 5 8 5s1.365-.043 1.97-.12m-.245-.978L8.97.88C8.718-.13 7.282-.13 7.03.88L6.275 3.9C6.8 3.965 7.382 4 8 4s1.2-.036 1.725-.098m4.396 8.613a.5.5 0 0 1 .037.96l-6 2a.5.5 0 0 1-.316 0l-6-2a.5.5 0 0 1 .037-.96l2.391-.598.565-2.257c.862.212 1.964.339 3.165.339s2.303-.127 3.165-.339l.565 2.257z\" />\n      </svg>\n    );\n  },\n);\n\nConeStriped.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ConeStriped;\n"
  },
  {
    "path": "src/icons/cone.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cone = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cone', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.03 1.88c.252-1.01 1.688-1.01 1.94 0l2.905 11.62H14a.5.5 0 0 1 0 1H2a.5.5 0 0 1 0-1h2.125z\" />\n      </svg>\n    );\n  },\n);\n\nCone.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cone;\n"
  },
  {
    "path": "src/icons/controller.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Controller = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-controller', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 6.027a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m-6.5-3h1v1h1v1h-1v1h-1v-1h-1v-1h1z\" />\n        <path d=\"M3.051 3.26a.5.5 0 0 1 .354-.613l1.932-.518a.5.5 0 0 1 .62.39c.655-.079 1.35-.117 2.043-.117.72 0 1.443.041 2.12.126a.5.5 0 0 1 .622-.399l1.932.518a.5.5 0 0 1 .306.729q.211.136.373.297c.408.408.78 1.05 1.095 1.772.32.733.599 1.591.805 2.466s.34 1.78.364 2.606c.024.816-.059 1.602-.328 2.21a1.42 1.42 0 0 1-1.445.83c-.636-.067-1.115-.394-1.513-.773-.245-.232-.496-.526-.739-.808-.126-.148-.25-.292-.368-.423-.728-.804-1.597-1.527-3.224-1.527s-2.496.723-3.224 1.527c-.119.131-.242.275-.368.423-.243.282-.494.575-.739.808-.398.38-.877.706-1.513.773a1.42 1.42 0 0 1-1.445-.83c-.27-.608-.352-1.395-.329-2.21.024-.826.16-1.73.365-2.606.206-.875.486-1.733.805-2.466.315-.722.687-1.364 1.094-1.772a2.3 2.3 0 0 1 .433-.335l-.028-.079zm2.036.412c-.877.185-1.469.443-1.733.708-.276.276-.587.783-.885 1.465a14 14 0 0 0-.748 2.295 12.4 12.4 0 0 0-.339 2.406c-.022.755.062 1.368.243 1.776a.42.42 0 0 0 .426.24c.327-.034.61-.199.929-.502.212-.202.4-.423.615-.674.133-.156.276-.323.44-.504C4.861 9.969 5.978 9.027 8 9.027s3.139.942 3.965 1.855c.164.181.307.348.44.504.214.251.403.472.615.674.318.303.601.468.929.503a.42.42 0 0 0 .426-.241c.18-.408.265-1.02.243-1.776a12.4 12.4 0 0 0-.339-2.406 14 14 0 0 0-.748-2.295c-.298-.682-.61-1.19-.885-1.465-.264-.265-.856-.523-1.733-.708-.85-.179-1.877-.27-2.913-.27s-2.063.091-2.913.27\" />\n      </svg>\n    );\n  },\n);\n\nController.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Controller;\n"
  },
  {
    "path": "src/icons/cookie.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cookie = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cookie', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m4.5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m-.5 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n        <path d=\"M8 0a7.96 7.96 0 0 0-4.075 1.114q-.245.102-.437.28A8 8 0 1 0 8 0m3.25 14.201a1.5 1.5 0 0 0-2.13.71A7 7 0 0 1 8 15a6.97 6.97 0 0 1-3.845-1.15 1.5 1.5 0 1 0-2.005-2.005A6.97 6.97 0 0 1 1 8c0-1.953.8-3.719 2.09-4.989a1.5 1.5 0 1 0 2.469-1.574A7 7 0 0 1 8 1c1.42 0 2.742.423 3.845 1.15a1.5 1.5 0 1 0 2.005 2.005A6.97 6.97 0 0 1 15 8c0 .596-.074 1.174-.214 1.727a1.5 1.5 0 1 0-1.025 2.25 7 7 0 0 1-2.51 2.224Z\" />\n      </svg>\n    );\n  },\n);\n\nCookie.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cookie;\n"
  },
  {
    "path": "src/icons/copy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Copy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-copy', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1h1v1a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1v1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCopy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Copy;\n"
  },
  {
    "path": "src/icons/cpu-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CpuFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cpu-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M5.5.5a.5.5 0 0 0-1 0V2A2.5 2.5 0 0 0 2 4.5H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2A2.5 2.5 0 0 0 4.5 14v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14a2.5 2.5 0 0 0 2.5-2.5h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14A2.5 2.5 0 0 0 11.5 2V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1zm1 4.5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3A1.5 1.5 0 0 1 6.5 5\" />\n      </svg>\n    );\n  },\n);\n\nCpuFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CpuFill;\n"
  },
  {
    "path": "src/icons/cpu.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cpu = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cpu', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 0a.5.5 0 0 1 .5.5V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2A2.5 2.5 0 0 1 14 4.5h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14a2.5 2.5 0 0 1-2.5 2.5v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14A2.5 2.5 0 0 1 2 11.5H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2A2.5 2.5 0 0 1 4.5 2V.5A.5.5 0 0 1 5 0m-.5 3A1.5 1.5 0 0 0 3 4.5v7A1.5 1.5 0 0 0 4.5 13h7a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 11.5 3zM5 6.5A1.5 1.5 0 0 1 6.5 5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5zM6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nCpu.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cpu;\n"
  },
  {
    "path": "src/icons/credit-card-2-back-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCard2BackFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card-2-back-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5H0zm11.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM0 11v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1z\" />\n      </svg>\n    );\n  },\n);\n\nCreditCard2BackFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCard2BackFill;\n"
  },
  {
    "path": "src/icons/credit-card-2-back.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCard2Back = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card-2-back', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm13 2v5H1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1m-1 9H2a1 1 0 0 1-1-1v-1h14v1a1 1 0 0 1-1 1\" />\n      </svg>\n    );\n  },\n);\n\nCreditCard2Back.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCard2Back;\n"
  },
  {
    "path": "src/icons/credit-card-2-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCard2FrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card-2-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nCreditCard2FrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCard2FrontFill;\n"
  },
  {
    "path": "src/icons/credit-card-2-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCard2Front = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card-2-front', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n        <path d=\"M2 5.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCreditCard2Front.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCard2Front;\n"
  },
  {
    "path": "src/icons/credit-card-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1H0zm0 3v5a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7zm3 2h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nCreditCardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCardFill;\n"
  },
  {
    "path": "src/icons/credit-card.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CreditCard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-credit-card', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v1h14V4a1 1 0 0 0-1-1zm13 4H1v5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n        <path d=\"M2 10a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nCreditCard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CreditCard;\n"
  },
  {
    "path": "src/icons/crop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Crop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-crop', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5.5A.5.5 0 0 1 4 1v13h13a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2H3.5a.5.5 0 0 1-.5-.5V4H1a.5.5 0 0 1 0-1h2V1a.5.5 0 0 1 .5-.5m2.5 3a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4H6.5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nCrop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Crop;\n"
  },
  {
    "path": "src/icons/crosshair.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Crosshair = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-crosshair', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5.5a.5.5 0 0 0-1 0v.518A7 7 0 0 0 1.018 7.5H.5a.5.5 0 0 0 0 1h.518A7 7 0 0 0 7.5 14.982v.518a.5.5 0 0 0 1 0v-.518A7 7 0 0 0 14.982 8.5h.518a.5.5 0 0 0 0-1h-.518A7 7 0 0 0 8.5 1.018zm-6.48 7A6 6 0 0 1 7.5 2.02v.48a.5.5 0 0 0 1 0v-.48a6 6 0 0 1 5.48 5.48h-.48a.5.5 0 0 0 0 1h.48a6 6 0 0 1-5.48 5.48v-.48a.5.5 0 0 0-1 0v.48A6 6 0 0 1 2.02 8.5h.48a.5.5 0 0 0 0-1zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n      </svg>\n    );\n  },\n);\n\nCrosshair.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Crosshair;\n"
  },
  {
    "path": "src/icons/crosshair2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Crosshair2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-crosshair2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a.5.5 0 0 1 .5.5v.518A7 7 0 0 1 14.982 7.5h.518a.5.5 0 0 1 0 1h-.518A7 7 0 0 1 8.5 14.982v.518a.5.5 0 0 1-1 0v-.518A7 7 0 0 1 1.018 8.5H.5a.5.5 0 0 1 0-1h.518A7 7 0 0 1 7.5 1.018V.5A.5.5 0 0 1 8 0m-.5 2.02A6 6 0 0 0 2.02 7.5h1.005A5 5 0 0 1 7.5 3.025zm1 1.005A5 5 0 0 1 12.975 7.5h1.005A6 6 0 0 0 8.5 2.02zM12.975 8.5A5 5 0 0 1 8.5 12.975v1.005a6 6 0 0 0 5.48-5.48zM7.5 12.975A5 5 0 0 1 3.025 8.5H2.02a6 6 0 0 0 5.48 5.48zM10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0\" />\n      </svg>\n    );\n  },\n);\n\nCrosshair2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Crosshair2;\n"
  },
  {
    "path": "src/icons/css.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Css = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-css', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V0zM4.59 7.498q-.908 0-1.455.508-.547.507-.547 1.484v3.106q0 .986.527 1.484t1.406.498q.576 0 1.016-.224.45-.225.703-.674.255-.45.254-1.114v-.185h-1.22v.176q0 .449-.186.683t-.527.235q-.372-.01-.557-.264-.186-.255-.186-.752V9.686q0-.547.166-.811.177-.264.577-.264.321 0 .517.225.195.224.195.693v.205h1.23V9.52q0-.674-.243-1.124a1.55 1.55 0 0 0-.664-.673q-.42-.225-1.006-.225m4.214-.01q-.586 0-1.006.244a1.67 1.67 0 0 0-.635.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.304.42.967.732l.469.215q.44.186.625.43.186.244.186.635 0 .478-.166.703-.157.224-.528.224-.36 0-.547-.244-.185-.243-.205-.752H6.87q.02.996.498 1.524.479.527 1.387.527t1.416-.518.508-1.484q0-.81-.332-1.289-.333-.479-1.045-.79l-.45-.196q-.39-.166-.556-.381-.165-.214-.166-.576 0-.4.166-.596.175-.195.508-.195.36 0 .508.234.156.234.175.703h1.123q-.03-.976-.498-1.484-.468-.518-1.308-.518m4.057 0q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518\"\n        />\n      </svg>\n    );\n  },\n);\n\nCss.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Css;\n"
  },
  {
    "path": "src/icons/cup-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CupFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cup-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.11 3.187A.5.5 0 0 1 .5 3h13a.5.5 0 0 1 .488.608l-.22.991a3.001 3.001 0 0 1-1.3 5.854l-.132.59A2.5 2.5 0 0 1 9.896 13H4.104a2.5 2.5 0 0 1-2.44-1.958L.012 3.608a.5.5 0 0 1 .098-.42Zm12.574 6.288a2 2 0 0 0 .866-3.899z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCupFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CupFill;\n"
  },
  {
    "path": "src/icons/cup-hot-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CupHotFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cup-hot-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.5 6a.5.5 0 0 0-.488.608l1.652 7.434A2.5 2.5 0 0 0 4.104 16h5.792a2.5 2.5 0 0 0 2.44-1.958l.131-.59a3 3 0 0 0 1.3-5.854l.221-.99A.5.5 0 0 0 13.5 6zM13 12.5a2 2 0 0 1-.316-.025l.867-3.898A2.001 2.001 0 0 1 13 12.5\"\n        />\n        <path d=\"m4.4.8-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.253.382l-.018.025-.005.008-.002.002A.5.5 0 0 1 3.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 3.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 3 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 4.4.8m3 0-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.253.382l-.018.025-.005.008-.002.002A.5.5 0 0 1 6.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 6.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 6 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 7.4.8m3 0-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.252.382l-.019.025-.005.008-.002.002A.5.5 0 0 1 9.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 9.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 9 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 10.4.8\" />\n      </svg>\n    );\n  },\n);\n\nCupHotFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CupHotFill;\n"
  },
  {
    "path": "src/icons/cup-hot.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CupHot = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cup-hot', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.5 6a.5.5 0 0 0-.488.608l1.652 7.434A2.5 2.5 0 0 0 4.104 16h5.792a2.5 2.5 0 0 0 2.44-1.958l.131-.59a3 3 0 0 0 1.3-5.854l.221-.99A.5.5 0 0 0 13.5 6zM13 12.5a2 2 0 0 1-.316-.025l.867-3.898A2.001 2.001 0 0 1 13 12.5M2.64 13.825 1.123 7h11.754l-1.517 6.825A1.5 1.5 0 0 1 9.896 15H4.104a1.5 1.5 0 0 1-1.464-1.175\"\n        />\n        <path d=\"m4.4.8-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.253.382l-.018.025-.005.008-.002.002A.5.5 0 0 1 3.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 3.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 3 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 4.4.8m3 0-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.253.382l-.018.025-.005.008-.002.002A.5.5 0 0 1 6.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 6.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 6 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 7.4.8m3 0-.003.004-.014.019a4 4 0 0 0-.204.31 2 2 0 0 0-.141.267c-.026.06-.034.092-.037.103v.004a.6.6 0 0 0 .091.248c.075.133.178.272.308.445l.01.012c.118.158.26.347.37.543.112.2.22.455.22.745 0 .188-.065.368-.119.494a3 3 0 0 1-.202.388 5 5 0 0 1-.252.382l-.019.025-.005.008-.002.002A.5.5 0 0 1 9.6 4.2l.003-.004.014-.019a4 4 0 0 0 .204-.31 2 2 0 0 0 .141-.267c.026-.06.034-.092.037-.103a.6.6 0 0 0-.09-.252A4 4 0 0 0 9.6 2.8l-.01-.012a5 5 0 0 1-.37-.543A1.53 1.53 0 0 1 9 1.5c0-.188.065-.368.119-.494.059-.138.134-.274.202-.388a6 6 0 0 1 .253-.382l.025-.035A.5.5 0 0 1 10.4.8\" />\n      </svg>\n    );\n  },\n);\n\nCupHot.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CupHot;\n"
  },
  {
    "path": "src/icons/cup-straw.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CupStraw = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cup-straw', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.902.334a.5.5 0 0 1-.28.65l-2.254.902-.4 1.927c.376.095.715.215.972.367.228.135.56.396.56.82q0 .069-.011.132l-.962 9.068a1.28 1.28 0 0 1-.524.93c-.488.34-1.494.87-3.01.87s-2.522-.53-3.01-.87a1.28 1.28 0 0 1-.524-.93L3.51 5.132A1 1 0 0 1 3.5 5c0-.424.332-.685.56-.82.262-.154.607-.276.99-.372C5.824 3.614 6.867 3.5 8 3.5c.712 0 1.389.045 1.985.127l.464-2.215a.5.5 0 0 1 .303-.356l2.5-1a.5.5 0 0 1 .65.278M9.768 4.607A14 14 0 0 0 8 4.5c-1.076 0-2.033.11-2.707.278A3.3 3.3 0 0 0 4.645 5c.146.073.362.15.648.222C5.967 5.39 6.924 5.5 8 5.5c.571 0 1.109-.03 1.588-.085zm.292 1.756C9.445 6.45 8.742 6.5 8 6.5c-1.133 0-2.176-.114-2.95-.308a6 6 0 0 1-.435-.127l.838 8.03c.013.121.06.186.102.215.357.249 1.168.69 2.438.69s2.081-.441 2.438-.69c.042-.029.09-.094.102-.215l.852-8.03a6 6 0 0 1-.435.127 9 9 0 0 1-.89.17zM4.467 4.884s.003.002.005.006zm7.066 0-.005.006zM11.354 5a3 3 0 0 0-.604-.21l-.099.445.055-.013c.286-.072.502-.149.648-.222\" />\n      </svg>\n    );\n  },\n);\n\nCupStraw.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CupStraw;\n"
  },
  {
    "path": "src/icons/cup.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cup = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cup', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.11 3.187A.5.5 0 0 1 .5 3h13a.5.5 0 0 1 .488.608l-.22.991a3.001 3.001 0 0 1-1.3 5.854l-.132.59A2.5 2.5 0 0 1 9.896 13H4.104a2.5 2.5 0 0 1-2.44-1.958L.012 3.608a.5.5 0 0 1 .098-.42Zm12.574 6.288a2 2 0 0 0 .866-3.899zM1.124 4l1.516 6.825A1.5 1.5 0 0 0 4.104 12h5.792a1.5 1.5 0 0 0 1.464-1.175L12.877 4H1.123Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nCup.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cup;\n"
  },
  {
    "path": "src/icons/currency-bitcoin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyBitcoin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-bitcoin', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 13v1.25c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25V13h.5v1.25c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25V13h.084c1.992 0 3.416-1.033 3.416-2.82 0-1.502-1.007-2.323-2.186-2.44v-.088c.97-.242 1.683-.974 1.683-2.19C11.997 3.93 10.847 3 9.092 3H9V1.75a.25.25 0 0 0-.25-.25h-1a.25.25 0 0 0-.25.25V3h-.573V1.75a.25.25 0 0 0-.25-.25H5.75a.25.25 0 0 0-.25.25V3l-1.998.011a.25.25 0 0 0-.25.25v.989c0 .137.11.25.248.25l.755-.005a.75.75 0 0 1 .745.75v5.505a.75.75 0 0 1-.75.75l-.748.011a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25zm1.427-8.513h1.719c.906 0 1.438.498 1.438 1.312 0 .871-.575 1.362-1.877 1.362h-1.28zm0 4.051h1.84c1.137 0 1.756.58 1.756 1.524 0 .953-.626 1.45-2.158 1.45H6.927z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyBitcoin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyBitcoin;\n"
  },
  {
    "path": "src/icons/currency-dollar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyDollar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-dollar', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 10.781c.148 1.667 1.513 2.85 3.591 3.003V15h1.043v-1.216c2.27-.179 3.678-1.438 3.678-3.3 0-1.59-.947-2.51-2.956-3.028l-.722-.187V3.467c1.122.11 1.879.714 2.07 1.616h1.47c-.166-1.6-1.54-2.748-3.54-2.875V1H7.591v1.233c-1.939.23-3.27 1.472-3.27 3.156 0 1.454.966 2.483 2.661 2.917l.61.162v4.031c-1.149-.17-1.94-.8-2.131-1.718zm3.391-3.836c-1.043-.263-1.6-.825-1.6-1.616 0-.944.704-1.641 1.8-1.828v3.495l-.2-.05zm1.591 1.872c1.287.323 1.852.859 1.852 1.769 0 1.097-.826 1.828-2.2 1.939V8.73z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyDollar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyDollar;\n"
  },
  {
    "path": "src/icons/currency-euro.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyEuro = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-euro', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 9.42h1.063C5.4 12.323 7.317 14 10.34 14c.622 0 1.167-.068 1.659-.185v-1.3c-.484.119-1.045.17-1.659.17-2.1 0-3.455-1.198-3.775-3.264h4.017v-.928H6.497v-.936q-.002-.165.008-.329h4.078v-.927H6.618c.388-1.898 1.719-2.985 3.723-2.985.614 0 1.175.05 1.659.177V2.194A6.6 6.6 0 0 0 10.341 2c-2.928 0-4.82 1.569-5.244 4.3H4v.928h1.01v1.265H4v.928z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyEuro.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyEuro;\n"
  },
  {
    "path": "src/icons/currency-exchange.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyExchange = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-exchange', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 5a5 5 0 0 0 4.027 4.905 6.5 6.5 0 0 1 .544-2.073C3.695 7.536 3.132 6.864 3 5.91h-.5v-.426h.466V5.05q-.001-.07.004-.135H2.5v-.427h.511C3.236 3.24 4.213 2.5 5.681 2.5c.316 0 .59.031.819.085v.733a3.5 3.5 0 0 0-.815-.082c-.919 0-1.538.466-1.734 1.252h1.917v.427h-1.98q-.004.07-.003.147v.422h1.983v.427H3.93c.118.602.468 1.03 1.005 1.229a6.5 6.5 0 0 1 4.97-3.113A5.002 5.002 0 0 0 0 5m16 5.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0m-7.75 1.322c.069.835.746 1.485 1.964 1.562V14h.54v-.62c1.259-.086 1.996-.74 1.996-1.69 0-.865-.563-1.31-1.57-1.54l-.426-.1V8.374c.54.06.884.347.966.745h.948c-.07-.804-.779-1.433-1.914-1.502V7h-.54v.629c-1.076.103-1.808.732-1.808 1.622 0 .787.544 1.288 1.45 1.493l.358.085v1.78c-.554-.08-.92-.376-1.003-.787zm1.96-1.895c-.532-.12-.82-.364-.82-.732 0-.41.311-.719.824-.809v1.54h-.005zm.622 1.044c.645.145.943.38.943.796 0 .474-.37.8-1.02.86v-1.674z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyExchange.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyExchange;\n"
  },
  {
    "path": "src/icons/currency-pound.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyPound = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-pound', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 8.585h1.969c.115.465.186.939.186 1.43 0 1.385-.736 2.496-2.075 2.771V14H12v-1.24H6.492v-.129c.825-.525 1.135-1.446 1.135-2.694 0-.465-.07-.913-.168-1.352h3.29v-.972H7.22c-.186-.723-.372-1.455-.372-2.247 0-1.274 1.047-2.066 2.58-2.066a5.3 5.3 0 0 1 2.103.465V2.456A5.6 5.6 0 0 0 9.348 2C6.865 2 5.322 3.291 5.322 5.366c0 .775.195 1.515.399 2.247H4z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyPound.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyPound;\n"
  },
  {
    "path": "src/icons/currency-rupee.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyRupee = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-rupee', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 3.06h2.726c1.22 0 2.12.575 2.325 1.724H4v1.051h5.051C8.855 7.001 8 7.558 6.788 7.558H4v1.317L8.437 14h2.11L6.095 8.884h.855c2.316-.018 3.465-1.476 3.688-3.049H12V4.784h-1.345c-.08-.778-.357-1.335-.793-1.732H12V2H4z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyRupee.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyRupee;\n"
  },
  {
    "path": "src/icons/currency-yen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CurrencyYen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-currency-yen', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.75 14v-2.629h2.446v-.967H8.75v-1.31h2.445v-.967H9.128L12.5 2h-1.699L8.047 7.327h-.086L5.207 2H3.5l3.363 6.127H4.778v.968H7.25v1.31H4.78v.966h2.47V14h1.502z\" />\n      </svg>\n    );\n  },\n);\n\nCurrencyYen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CurrencyYen;\n"
  },
  {
    "path": "src/icons/cursor-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CursorFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cursor-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.082 2.182a.5.5 0 0 1 .103.557L8.528 15.467a.5.5 0 0 1-.917-.007L5.57 10.694.803 8.652a.5.5 0 0 1-.006-.916l12.728-5.657a.5.5 0 0 1 .556.103z\" />\n      </svg>\n    );\n  },\n);\n\nCursorFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CursorFill;\n"
  },
  {
    "path": "src/icons/cursor-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst CursorText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cursor-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 2a.5.5 0 0 1 .5-.5c.862 0 1.573.287 2.06.566.174.099.321.198.44.286.119-.088.266-.187.44-.286A4.17 4.17 0 0 1 10.5 1.5a.5.5 0 0 1 0 1c-.638 0-1.177.213-1.564.434a3.5 3.5 0 0 0-.436.294V7.5H9a.5.5 0 0 1 0 1h-.5v4.272c.1.08.248.187.436.294.387.221.926.434 1.564.434a.5.5 0 0 1 0 1 4.17 4.17 0 0 1-2.06-.566A5 5 0 0 1 8 13.65a5 5 0 0 1-.44.285 4.17 4.17 0 0 1-2.06.566.5.5 0 0 1 0-1c.638 0 1.177-.213 1.564-.434.188-.107.335-.214.436-.294V8.5H7a.5.5 0 0 1 0-1h.5V3.228a3.5 3.5 0 0 0-.436-.294A3.17 3.17 0 0 0 5.5 2.5.5.5 0 0 1 5 2m2.648 10.645\" />\n      </svg>\n    );\n  },\n);\n\nCursorText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default CursorText;\n"
  },
  {
    "path": "src/icons/cursor.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Cursor = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-cursor', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.082 2.182a.5.5 0 0 1 .103.557L8.528 15.467a.5.5 0 0 1-.917-.007L5.57 10.694.803 8.652a.5.5 0 0 1-.006-.916l12.728-5.657a.5.5 0 0 1 .556.103zM2.25 8.184l3.897 1.67a.5.5 0 0 1 .262.263l1.67 3.897L12.743 3.52z\" />\n      </svg>\n    );\n  },\n);\n\nCursor.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Cursor;\n"
  },
  {
    "path": "src/icons/dash-circle-dotted.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashCircleDotted = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-circle-dotted', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0q-.264 0-.523.017l.064.998a7 7 0 0 1 .918 0l.064-.998A8 8 0 0 0 8 0M6.44.152q-.52.104-1.012.27l.321.948q.43-.147.884-.237L6.44.153zm4.132.271a8 8 0 0 0-1.011-.27l-.194.98q.453.09.884.237zm1.873.925a8 8 0 0 0-.906-.524l-.443.896q.413.205.793.459zM4.46.824q-.471.233-.905.524l.556.83a7 7 0 0 1 .793-.458zM2.725 1.985q-.394.346-.74.74l.752.66q.303-.345.648-.648zm11.29.74a8 8 0 0 0-.74-.74l-.66.752q.346.303.648.648zm1.161 1.735a8 8 0 0 0-.524-.905l-.83.556q.254.38.458.793l.896-.443zM1.348 3.555q-.292.433-.524.906l.896.443q.205-.413.459-.793zM.423 5.428a8 8 0 0 0-.27 1.011l.98.194q.09-.453.237-.884zM15.848 6.44a8 8 0 0 0-.27-1.012l-.948.321q.147.43.237.884zM.017 7.477a8 8 0 0 0 0 1.046l.998-.064a7 7 0 0 1 0-.918zM16 8a8 8 0 0 0-.017-.523l-.998.064a7 7 0 0 1 0 .918l.998.064A8 8 0 0 0 16 8M.152 9.56q.104.52.27 1.012l.948-.321a7 7 0 0 1-.237-.884l-.98.194zm15.425 1.012q.168-.493.27-1.011l-.98-.194q-.09.453-.237.884zM.824 11.54a8 8 0 0 0 .524.905l.83-.556a7 7 0 0 1-.458-.793zm13.828.905q.292-.434.524-.906l-.896-.443q-.205.413-.459.793zm-12.667.83q.346.394.74.74l.66-.752a7 7 0 0 1-.648-.648zm11.29.74q.394-.346.74-.74l-.752-.66q-.302.346-.648.648zm-1.735 1.161q.471-.233.905-.524l-.556-.83a7 7 0 0 1-.793.458zm-7.985-.524q.434.292.906.524l.443-.896a7 7 0 0 1-.793-.459zm1.873.925q.493.168 1.011.27l.194-.98a7 7 0 0 1-.884-.237zm4.132.271a8 8 0 0 0 1.012-.27l-.321-.948a7 7 0 0 1-.884.237l.194.98zm-2.083.135a8 8 0 0 0 1.046 0l-.064-.998a7 7 0 0 1-.918 0zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nDashCircleDotted.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashCircleDotted;\n"
  },
  {
    "path": "src/icons/dash-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nDashCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashCircleFill;\n"
  },
  {
    "path": "src/icons/dash-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8\" />\n      </svg>\n    );\n  },\n);\n\nDashCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashCircle;\n"
  },
  {
    "path": "src/icons/dash-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nDashLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashLg;\n"
  },
  {
    "path": "src/icons/dash-square-dotted.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashSquareDotted = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-square-dotted', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 0q-.25 0-.487.048l.194.98A1.5 1.5 0 0 1 2.5 1h.458V0zm2.292 0h-.917v1h.917zm1.833 0h-.917v1h.917zm1.833 0h-.916v1h.916zm1.834 0h-.917v1h.917zm1.833 0h-.917v1h.917zM13.5 0h-.458v1h.458q.151 0 .293.029l.194-.981A2.5 2.5 0 0 0 13.5 0m2.079 1.11a2.5 2.5 0 0 0-.69-.689l-.556.831q.248.167.415.415l.83-.556zM1.11.421a2.5 2.5 0 0 0-.689.69l.831.556c.11-.164.251-.305.415-.415zM16 2.5q0-.25-.048-.487l-.98.194q.027.141.028.293v.458h1zM.048 2.013A2.5 2.5 0 0 0 0 2.5v.458h1V2.5q0-.151.029-.293zM0 3.875v.917h1v-.917zm16 .917v-.917h-1v.917zM0 5.708v.917h1v-.917zm16 .917v-.917h-1v.917zM0 7.542v.916h1v-.916zm15 .916h1v-.916h-1zM0 9.375v.917h1v-.917zm16 .917v-.917h-1v.917zm-16 .916v.917h1v-.917zm16 .917v-.917h-1v.917zm-16 .917v.458q0 .25.048.487l.98-.194A1.5 1.5 0 0 1 1 13.5v-.458zm16 .458v-.458h-1v.458q0 .151-.029.293l.981.194Q16 13.75 16 13.5M.421 14.89c.183.272.417.506.69.689l.556-.831a1.5 1.5 0 0 1-.415-.415zm14.469.689c.272-.183.506-.417.689-.69l-.831-.556c-.11.164-.251.305-.415.415l.556.83zm-12.877.373Q2.25 16 2.5 16h.458v-1H2.5q-.151 0-.293-.029zM13.5 16q.25 0 .487-.048l-.194-.98A1.5 1.5 0 0 1 13.5 15h-.458v1zm-9.625 0h.917v-1h-.917zm1.833 0h.917v-1h-.917zm1.834 0h.916v-1h-.916zm1.833 0h.917v-1h-.917zm1.833 0h.917v-1h-.917zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nDashSquareDotted.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashSquareDotted;\n"
  },
  {
    "path": "src/icons/dash-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm2.5 7.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nDashSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashSquareFill;\n"
  },
  {
    "path": "src/icons/dash-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DashSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8\" />\n      </svg>\n    );\n  },\n);\n\nDashSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DashSquare;\n"
  },
  {
    "path": "src/icons/dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8\" />\n      </svg>\n    );\n  },\n);\n\nDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dash;\n"
  },
  {
    "path": "src/icons/database-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-add', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseAdd;\n"
  },
  {
    "path": "src/icons/database-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseCheck;\n"
  },
  {
    "path": "src/icons/database-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseDash;\n"
  },
  {
    "path": "src/icons/database-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseDown;\n"
  },
  {
    "path": "src/icons/database-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseExclamation;\n"
  },
  {
    "path": "src/icons/database-fill-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-add', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillAdd;\n"
  },
  {
    "path": "src/icons/database-fill-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillCheck;\n"
  },
  {
    "path": "src/icons/database-fill-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillDash;\n"
  },
  {
    "path": "src/icons/database-fill-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillDown;\n"
  },
  {
    "path": "src/icons/database-fill-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillExclamation;\n"
  },
  {
    "path": "src/icons/database-fill-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905m3.631-4.538c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillGear;\n"
  },
  {
    "path": "src/icons/database-fill-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M3.904 9.223C2.875 8.755 2 8.007 2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.5 4.5 0 0 0-1.364-.125 3 3 0 0 0-2.197.731 4.5 4.5 0 0 0-1.254 1.237A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777M8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16q.134 0 .266-.003A2 2 0 0 1 8 15zm0-1.5q0 .15.01.3A2 2 0 0 0 8 13c-1.573 0-3.022-.289-4.096-.777C2.875 11.755 2 11.007 2 10v-.839c.457.432 1.004.751 1.49.972C4.722 10.693 6.318 11 8 11q.13 0 .257-.002A4.5 4.5 0 0 0 8 12.5\" />\n        <path d=\"M9 13a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillLock;\n"
  },
  {
    "path": "src/icons/database-fill-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95ZM8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillSlash;\n"
  },
  {
    "path": "src/icons/database-fill-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillUp;\n"
  },
  {
    "path": "src/icons/database-fill-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFillX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1c-1.573 0-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4s.875 1.755 1.904 2.223C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777C13.125 5.755 14 5.007 14 4s-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1\" />\n        <path d=\"M2 7v-.839c.457.432 1.004.751 1.49.972C4.722 7.693 6.318 8 8 8s3.278-.307 4.51-.867c.486-.22 1.033-.54 1.49-.972V7c0 .424-.155.802-.411 1.133a4.51 4.51 0 0 0-4.815 1.843A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777C2.875 8.755 2 8.007 2 7m6.257 3.998L8 11c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13h.027a4.55 4.55 0 0 1 .23-2.002m-.002 3L8 14c-1.682 0-3.278-.307-4.51-.867-.486-.22-1.033-.54-1.49-.972V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-1.3-1.905\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFillX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFillX;\n"
  },
  {
    "path": "src/icons/database-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223\" />\n        <path d=\"M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\" />\n        <path d=\"M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\" />\n        <path d=\"M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseFill;\n"
  },
  {
    "path": "src/icons/database-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n        <path d=\"M11.886 9.46c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseGear;\n"
  },
  {
    "path": "src/icons/database-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 5.698a5 5 0 0 1-.904.525C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777A5 5 0 0 1 3 5.698V7c0 .374.356.875 1.318 1.313C5.234 8.729 6.536 9 8 9c.666 0 1.298-.056 1.876-.156-.43.31-.804.693-1.102 1.132A12 12 0 0 1 8 10c-1.573 0-3.022-.289-4.096-.777A5 5 0 0 1 3 8.698V10c0 .374.356.875 1.318 1.313C5.234 11.729 6.536 12 8 12h.027a4.6 4.6 0 0 0-.017.8A2 2 0 0 0 8 13c-1.573 0-3.022-.289-4.096-.777A5 5 0 0 1 3 11.698V13c0 .374.356.875 1.318 1.313C5.234 14.729 6.536 15 8 15c0 .363.097.704.266.997Q8.134 16.001 8 16c-1.573 0-3.022-.289-4.096-.777C2.875 14.755 2 14.007 2 13V4c0-1.007.875-1.755 1.904-2.223C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4v4.256a4.5 4.5 0 0 0-1.753-.249C12.787 7.654 13 7.289 13 7zm-8.682-3.01C3.356 3.124 3 3.625 3 4c0 .374.356.875 1.318 1.313C5.234 5.729 6.536 6 8 6s2.766-.27 3.682-.687C12.644 4.875 13 4.373 13 4c0-.374-.356-.875-1.318-1.313C10.766 2.271 9.464 2 8 2s-2.766.27-3.682.687Z\" />\n        <path d=\"M9 13a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseLock;\n"
  },
  {
    "path": "src/icons/database-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95Z\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseSlash;\n"
  },
  {
    "path": "src/icons/database-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0\" />\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseUp;\n"
  },
  {
    "path": "src/icons/database-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DatabaseX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.096 6.223A5 5 0 0 0 13 5.698V7c0 .289-.213.654-.753 1.007a4.5 4.5 0 0 1 1.753.25V4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16c.536 0 1.058-.034 1.555-.097a4.5 4.5 0 0 1-.813-.927Q8.378 15 8 15c-1.464 0-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13h.027a4.6 4.6 0 0 1 0-1H8c-1.464 0-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10q.393 0 .774-.024a4.5 4.5 0 0 1 1.102-1.132C9.298 8.944 8.666 9 8 9c-1.464 0-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777M3 4c0-.374.356-.875 1.318-1.313C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nDatabaseX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DatabaseX;\n"
  },
  {
    "path": "src/icons/database.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Database = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-database', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.318 2.687C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4c0-.374.356-.875 1.318-1.313M13 5.698V7c0 .374-.356.875-1.318 1.313C10.766 8.729 9.464 9 8 9s-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777A5 5 0 0 0 13 5.698M14 4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13zm-1 4.698V10c0 .374-.356.875-1.318 1.313C10.766 11.729 9.464 12 8 12s-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777A5 5 0 0 0 13 8.698m0 3V13c0 .374-.356.875-1.318 1.313C10.766 14.729 9.464 15 8 15s-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13s3.022-.289 4.096-.777c.324-.147.633-.323.904-.525\" />\n      </svg>\n    );\n  },\n);\n\nDatabase.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Database;\n"
  },
  {
    "path": "src/icons/device-hdd-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DeviceHddFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-device-hdd-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.785 9.896A3.001 3.001 0 0 0 8 4a3 3 0 0 0-.891 5.865c.667-.44 1.396-.91 1.955-1.268.224-.144.483.115.34.34zM9 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm9 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 13a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-9.5.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1M4 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m2.882 11.177a1.102 1.102 0 0 1-1.56-1.559c.1-.098.396-.314.795-.588a4 4 0 1 1 1.946.47c-.537.813-1.02 1.515-1.181 1.677\" />\n      </svg>\n    );\n  },\n);\n\nDeviceHddFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DeviceHddFill;\n"
  },
  {
    "path": "src/icons/device-hdd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DeviceHdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-device-hdd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 11a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-7.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M5 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M8 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"M12 7a4 4 0 0 1-3.937 4c-.537.813-1.02 1.515-1.181 1.677a1.102 1.102 0 0 1-1.56-1.559c.1-.098.396-.314.795-.588A4 4 0 0 1 8 3a4 4 0 0 1 4 4m-1 0a3 3 0 1 0-3.891 2.865c.667-.44 1.396-.91 1.955-1.268.224-.144.483.115.34.34l-.62.96A3 3 0 0 0 11 7\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nDeviceHdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DeviceHdd;\n"
  },
  {
    "path": "src/icons/device-ssd-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DeviceSsdFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-device-ssd-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 8V4h6v4z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m9 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M3.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m9.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M4.75 3h6.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-6.5A.75.75 0 0 1 4 8.25v-4.5A.75.75 0 0 1 4.75 3M5 12h6a1 1 0 0 1 1 1v2h-1v-2h-.75v2h-1v-2H8.5v2h-1v-2h-.75v2h-1v-2H5v2H4v-2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nDeviceSsdFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DeviceSsdFill;\n"
  },
  {
    "path": "src/icons/device-ssd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DeviceSsd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-device-ssd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.75 4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h6.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75zM5 8V5h6v3zm0-5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m7 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M4.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m7 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm11 12V2a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2a1 1 0 0 0 1-1m-7.25 1v-2H5v2zm1.75 0v-2h-.75v2zm1.75 0v-2H8.5v2zM11 13h-.75v2H11z\" />\n      </svg>\n    );\n  },\n);\n\nDeviceSsd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DeviceSsd;\n"
  },
  {
    "path": "src/icons/diagram-2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Diagram2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diagram-2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H11a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 5 7h2.5V6A1.5 1.5 0 0 1 6 4.5zm-3 8A1.5 1.5 0 0 1 4.5 10h1A1.5 1.5 0 0 1 7 11.5v1A1.5 1.5 0 0 1 5.5 14h-1A1.5 1.5 0 0 1 3 12.5zm6 0a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1A1.5 1.5 0 0 1 9 12.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDiagram2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Diagram2Fill;\n"
  },
  {
    "path": "src/icons/diagram-2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Diagram2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diagram-2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H11a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 5 7h2.5V6A1.5 1.5 0 0 1 6 4.5zM8.5 5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5zM3 11.5A1.5 1.5 0 0 1 4.5 10h1A1.5 1.5 0 0 1 7 11.5v1A1.5 1.5 0 0 1 5.5 14h-1A1.5 1.5 0 0 1 3 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1A1.5 1.5 0 0 1 9 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDiagram2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Diagram2;\n"
  },
  {
    "path": "src/icons/diagram-3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Diagram3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diagram-3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H14a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 2 7h5.5V6A1.5 1.5 0 0 1 6 4.5zm-6 8A1.5 1.5 0 0 1 1.5 10h1A1.5 1.5 0 0 1 4 11.5v1A1.5 1.5 0 0 1 2.5 14h-1A1.5 1.5 0 0 1 0 12.5zm6 0A1.5 1.5 0 0 1 7.5 10h1a1.5 1.5 0 0 1 1.5 1.5v1A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5zm6 0a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDiagram3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Diagram3Fill;\n"
  },
  {
    "path": "src/icons/diagram-3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Diagram3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diagram-3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H14a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 2 7h5.5V6A1.5 1.5 0 0 1 6 4.5zM8.5 5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5zM0 11.5A1.5 1.5 0 0 1 1.5 10h1A1.5 1.5 0 0 1 4 11.5v1A1.5 1.5 0 0 1 2.5 14h-1A1.5 1.5 0 0 1 0 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5A1.5 1.5 0 0 1 7.5 10h1a1.5 1.5 0 0 1 1.5 1.5v1A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDiagram3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Diagram3;\n"
  },
  {
    "path": "src/icons/diamond-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DiamondFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diamond-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDiamondFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DiamondFill;\n"
  },
  {
    "path": "src/icons/diamond-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DiamondHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diamond-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM8 .989c.127 0 .253.049.35.145l6.516 6.516a.495.495 0 0 1 0 .7L8.35 14.866a.5.5 0 0 1-.35.145z\" />\n      </svg>\n    );\n  },\n);\n\nDiamondHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DiamondHalf;\n"
  },
  {
    "path": "src/icons/diamond.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Diamond = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-diamond', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134z\" />\n      </svg>\n    );\n  },\n);\n\nDiamond.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Diamond;\n"
  },
  {
    "path": "src/icons/dice-1-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice1Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-1-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm5 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice1Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice1Fill;\n"
  },
  {
    "path": "src/icons/dice-1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-1', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <circle cx=\"8\" cy=\"8\" r=\"1.5\" />\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n      </svg>\n    );\n  },\n);\n\nDice1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice1;\n"
  },
  {
    "path": "src/icons/dice-2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3zm5.5 1a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m6.5 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice2Fill;\n"
  },
  {
    "path": "src/icons/dice-2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n        <path d=\"M5.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDice2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice2;\n"
  },
  {
    "path": "src/icons/dice-3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm2.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M8 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice3Fill;\n"
  },
  {
    "path": "src/icons/dice-3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n        <path d=\"M5.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-4-4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDice3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice3;\n"
  },
  {
    "path": "src/icons/dice-4-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice4Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-4-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm1 5.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m8 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m1.5 6.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M4 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice4Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice4Fill;\n"
  },
  {
    "path": "src/icons/dice-4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-4', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n        <path d=\"M5.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDice4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice4;\n"
  },
  {
    "path": "src/icons/dice-5-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice5Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-5-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm2.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M5.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M8 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice5Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice5Fill;\n"
  },
  {
    "path": "src/icons/dice-5.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice5 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-5', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n        <path d=\"M5.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m4-4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDice5.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice5;\n"
  },
  {
    "path": "src/icons/dice-6-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice6Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-6-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm1 5.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m8 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m1.5 6.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M12 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M5.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M4 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDice6Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice6Fill;\n"
  },
  {
    "path": "src/icons/dice-6.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dice6 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dice-6', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3z\" />\n        <path d=\"M5.5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-8 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nDice6.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dice6;\n"
  },
  {
    "path": "src/icons/disc-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DiscFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-disc-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-6 0a2 2 0 1 0-4 0 2 2 0 0 0 4 0M4 8a4 4 0 0 1 4-4 .5.5 0 0 0 0-1 5 5 0 0 0-5 5 .5.5 0 0 0 1 0m9 0a.5.5 0 1 0-1 0 4 4 0 0 1-4 4 .5.5 0 0 0 0 1 5 5 0 0 0 5-5\" />\n      </svg>\n    );\n  },\n);\n\nDiscFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DiscFill;\n"
  },
  {
    "path": "src/icons/disc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Disc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-disc', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0M8 4a4 4 0 0 0-4 4 .5.5 0 0 1-1 0 5 5 0 0 1 5-5 .5.5 0 0 1 0 1m4.5 3.5a.5.5 0 0 1 .5.5 5 5 0 0 1-5 5 .5.5 0 0 1 0-1 4 4 0 0 0 4-4 .5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nDisc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Disc;\n"
  },
  {
    "path": "src/icons/discord.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Discord = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-discord', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.545 2.907a13.2 13.2 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.2 12.2 0 0 0-3.658 0 8 8 0 0 0-.412-.833.05.05 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.04.04 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032q.003.022.021.037a13.3 13.3 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019q.463-.63.818-1.329a.05.05 0 0 0-.01-.059l-.018-.011a9 9 0 0 1-1.248-.595.05.05 0 0 1-.02-.066l.015-.019q.127-.095.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.05.05 0 0 1 .053.007q.121.1.248.195a.05.05 0 0 1-.004.085 8 8 0 0 1-1.249.594.05.05 0 0 0-.03.03.05.05 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.2 13.2 0 0 0 4.001-2.02.05.05 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.03.03 0 0 0-.02-.019m-8.198 7.307c-.789 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612m5.316 0c-.788 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612\" />\n      </svg>\n    );\n  },\n);\n\nDiscord.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Discord;\n"
  },
  {
    "path": "src/icons/display-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DisplayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-display-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 12q0 1-.25 1.5H5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-.75Q10 13 10 12h4c2 0 2-2 2-2V4c0-2-2-2-2-2H2C0 2 0 4 0 4v6c0 2 2 2 2 2z\" />\n      </svg>\n    );\n  },\n);\n\nDisplayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DisplayFill;\n"
  },
  {
    "path": "src/icons/display.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Display = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-display', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4s0-2 2-2h12s2 0 2 2v6s0 2-2 2h-4q0 1 .25 1.5H11a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1h.75Q6 13 6 12H2s-2 0-2-2zm1.398-.855a.76.76 0 0 0-.254.302A1.5 1.5 0 0 0 1 4.01V10c0 .325.078.502.145.602q.105.156.302.254a1.5 1.5 0 0 0 .538.143L2.01 11H14c.325 0 .502-.078.602-.145a.76.76 0 0 0 .254-.302 1.5 1.5 0 0 0 .143-.538L15 9.99V4c0-.325-.078-.502-.145-.602a.76.76 0 0 0-.302-.254A1.5 1.5 0 0 0 13.99 3H2c-.325 0-.502.078-.602.145\" />\n      </svg>\n    );\n  },\n);\n\nDisplay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Display;\n"
  },
  {
    "path": "src/icons/displayport-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DisplayportFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-displayport-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 5a1 1 0 0 0-1 1v3.191a1 1 0 0 0 .553.894l1.618.81a1 1 0 0 0 .447.105H15a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm1.5 2h11a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8H3v.5a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nDisplayportFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DisplayportFill;\n"
  },
  {
    "path": "src/icons/displayport.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Displayport = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-displayport', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V8h10v.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M1 5a1 1 0 0 0-1 1v3.191a1 1 0 0 0 .553.894l1.618.81a1 1 0 0 0 .447.105H15a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm0 1h14v4H2.618L1 9.191z\" />\n      </svg>\n    );\n  },\n);\n\nDisplayport.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Displayport;\n"
  },
  {
    "path": "src/icons/distribute-horizontal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DistributeHorizontal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-distribute-horizontal', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5m-13 0a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5\"\n        />\n        <path d=\"M6 13a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nDistributeHorizontal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DistributeHorizontal;\n"
  },
  {
    "path": "src/icons/distribute-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DistributeVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-distribute-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 1.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 0-1h-13a.5.5 0 0 0-.5.5m0 13a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 0-1h-13a.5.5 0 0 0-.5.5\"\n        />\n        <path d=\"M2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nDistributeVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DistributeVertical;\n"
  },
  {
    "path": "src/icons/door-closed-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DoorClosedFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-door-closed-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 1a1 1 0 0 1 1 1v13h1.5a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1H3V2a1 1 0 0 1 1-1zm-2 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nDoorClosedFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DoorClosedFill;\n"
  },
  {
    "path": "src/icons/door-closed.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DoorClosed = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-door-closed', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v13h1.5a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1H3zm1 13h8V2H4z\" />\n        <path d=\"M9 9a1 1 0 1 0 2 0 1 1 0 0 0-2 0\" />\n      </svg>\n    );\n  },\n);\n\nDoorClosed.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DoorClosed;\n"
  },
  {
    "path": "src/icons/door-open-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DoorOpenFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-door-open-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 15a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1H13V2.5A1.5 1.5 0 0 0 11.5 1H11V.5a.5.5 0 0 0-.57-.495l-7 1A.5.5 0 0 0 3 1.5V15zM11 2h.5a.5.5 0 0 1 .5.5V15h-1zm-2.5 8c-.276 0-.5-.448-.5-1s.224-1 .5-1 .5.448.5 1-.224 1-.5 1\" />\n      </svg>\n    );\n  },\n);\n\nDoorOpenFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DoorOpenFill;\n"
  },
  {
    "path": "src/icons/door-open.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DoorOpen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-door-open', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 10c-.276 0-.5-.448-.5-1s.224-1 .5-1 .5.448.5 1-.224 1-.5 1\" />\n        <path d=\"M10.828.122A.5.5 0 0 1 11 .5V1h.5A1.5 1.5 0 0 1 13 2.5V15h1.5a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1H3V1.5a.5.5 0 0 1 .43-.495l7-1a.5.5 0 0 1 .398.117M11.5 2H11v13h1V2.5a.5.5 0 0 0-.5-.5M4 1.934V15h6V1.077z\" />\n      </svg>\n    );\n  },\n);\n\nDoorOpen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DoorOpen;\n"
  },
  {
    "path": "src/icons/dot.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dot = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dot', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n      </svg>\n    );\n  },\n);\n\nDot.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dot;\n"
  },
  {
    "path": "src/icons/download.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Download = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-download', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z\" />\n      </svg>\n    );\n  },\n);\n\nDownload.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Download;\n"
  },
  {
    "path": "src/icons/dpad-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DpadFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dpad-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v3a.5.5 0 0 1-.5.5h-3A1.5 1.5 0 0 0 0 6.5v3A1.5 1.5 0 0 0 1.5 11h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 6.5 16h3a1.5 1.5 0 0 0 1.5-1.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 16 9.5v-3A1.5 1.5 0 0 0 14.5 5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 9.5 0zm1.288 2.34a.25.25 0 0 1 .424 0l.799 1.278A.25.25 0 0 1 8.799 4H7.201a.25.25 0 0 1-.212-.382zm0 11.32-.799-1.277A.25.25 0 0 1 7.201 12H8.8a.25.25 0 0 1 .212.383l-.799 1.278a.25.25 0 0 1-.424 0Zm-4.17-4.65-1.279-.798a.25.25 0 0 1 0-.424l1.279-.799A.25.25 0 0 1 4 7.201V8.8a.25.25 0 0 1-.382.212Zm10.043-.798-1.278.799A.25.25 0 0 1 12 8.799V7.2a.25.25 0 0 1 .383-.212l1.278.799a.25.25 0 0 1 0 .424Z\" />\n      </svg>\n    );\n  },\n);\n\nDpadFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DpadFill;\n"
  },
  {
    "path": "src/icons/dpad.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dpad = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dpad', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.788 2.34-.799 1.278A.25.25 0 0 0 7.201 4h1.598a.25.25 0 0 0 .212-.382l-.799-1.279a.25.25 0 0 0-.424 0Zm0 11.32-.799-1.277A.25.25 0 0 1 7.201 12h1.598a.25.25 0 0 1 .212.383l-.799 1.278a.25.25 0 0 1-.424 0ZM3.617 9.01 2.34 8.213a.25.25 0 0 1 0-.424l1.278-.799A.25.25 0 0 1 4 7.201V8.8a.25.25 0 0 1-.383.212Zm10.043-.798-1.277.799A.25.25 0 0 1 12 8.799V7.2a.25.25 0 0 1 .383-.212l1.278.799a.25.25 0 0 1 0 .424Z\" />\n        <path d=\"M6.5 0A1.5 1.5 0 0 0 5 1.5v3a.5.5 0 0 1-.5.5h-3A1.5 1.5 0 0 0 0 6.5v3A1.5 1.5 0 0 0 1.5 11h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 6.5 16h3a1.5 1.5 0 0 0 1.5-1.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 16 9.5v-3A1.5 1.5 0 0 0 14.5 5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 9.5 0zM6 1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 11.5 6h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a1.5 1.5 0 0 0-1.5 1.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 4.5 10h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 6 4.5z\" />\n      </svg>\n    );\n  },\n);\n\nDpad.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dpad;\n"
  },
  {
    "path": "src/icons/dribbble.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dribbble = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dribbble', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8c4.408 0 8-3.584 8-8s-3.592-8-8-8m5.284 3.688a6.8 6.8 0 0 1 1.545 4.251c-.226-.043-2.482-.503-4.755-.217-.052-.112-.096-.234-.148-.355-.139-.33-.295-.668-.451-.99 2.516-1.023 3.662-2.498 3.81-2.69zM8 1.18c1.735 0 3.323.65 4.53 1.718-.122.174-1.155 1.553-3.584 2.464-1.12-2.056-2.36-3.74-2.551-4A7 7 0 0 1 8 1.18m-2.907.642A43 43 0 0 1 7.627 5.77c-3.193.85-6.013.833-6.317.833a6.87 6.87 0 0 1 3.783-4.78zM1.163 8.01V7.8c.295.01 3.61.053 7.02-.971.199.381.381.772.555 1.162l-.27.078c-3.522 1.137-5.396 4.243-5.553 4.504a6.82 6.82 0 0 1-1.752-4.564zM8 14.837a6.8 6.8 0 0 1-4.19-1.44c.12-.252 1.509-2.924 5.361-4.269.018-.009.026-.009.044-.017a28.3 28.3 0 0 1 1.457 5.18A6.7 6.7 0 0 1 8 14.837m3.81-1.171c-.07-.417-.435-2.412-1.328-4.868 2.143-.338 4.017.217 4.251.295a6.77 6.77 0 0 1-2.924 4.573z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDribbble.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dribbble;\n"
  },
  {
    "path": "src/icons/dropbox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Dropbox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-dropbox', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.01 4.555 4.005 7.11 8.01 9.665 4.005 12.22 0 9.651l4.005-2.555L0 4.555 4.005 2zm-4.026 8.487 4.006-2.555 4.005 2.555-4.005 2.555zm4.026-3.39 4.005-2.556L8.01 4.555 11.995 2 16 4.555 11.995 7.11 16 9.665l-4.005 2.555z\" />\n      </svg>\n    );\n  },\n);\n\nDropbox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Dropbox;\n"
  },
  {
    "path": "src/icons/droplet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DropletFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-droplet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a6 6 0 0 0 6-6c0-1.655-1.122-2.904-2.432-4.362C10.254 4.176 8.75 2.503 8 0c0 0-6 5.686-6 10a6 6 0 0 0 6 6M6.646 4.646l.708.708c-.29.29-1.128 1.311-1.907 2.87l-.894-.448c.82-1.641 1.717-2.753 2.093-3.13\" />\n      </svg>\n    );\n  },\n);\n\nDropletFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DropletFill;\n"
  },
  {
    "path": "src/icons/droplet-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DropletHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-droplet-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.21.8C7.69.295 8 0 8 0q.164.544.371 1.038c.812 1.946 2.073 3.35 3.197 4.6C12.878 7.096 14 8.345 14 10a6 6 0 0 1-12 0C2 6.668 5.58 2.517 7.21.8m.413 1.021A31 31 0 0 0 5.794 3.99c-.726.95-1.436 2.008-1.96 3.07C3.304 8.133 3 9.138 3 10c0 0 2.5 1.5 5 .5s5-.5 5-.5c0-1.201-.796-2.157-2.181-3.7l-.03-.032C9.75 5.11 8.5 3.72 7.623 1.82z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.553 7.776c.82-1.641 1.717-2.753 2.093-3.13l.708.708c-.29.29-1.128 1.311-1.907 2.87z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDropletHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DropletHalf;\n"
  },
  {
    "path": "src/icons/droplet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Droplet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-droplet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.21.8C7.69.295 8 0 8 0q.164.544.371 1.038c.812 1.946 2.073 3.35 3.197 4.6C12.878 7.096 14 8.345 14 10a6 6 0 0 1-12 0C2 6.668 5.58 2.517 7.21.8m.413 1.021A31 31 0 0 0 5.794 3.99c-.726.95-1.436 2.008-1.96 3.07C3.304 8.133 3 9.138 3 10a5 5 0 0 0 10 0c0-1.201-.796-2.157-2.181-3.7l-.03-.032C9.75 5.11 8.5 3.72 7.623 1.82z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.553 7.776c.82-1.641 1.717-2.753 2.093-3.13l.708.708c-.29.29-1.128 1.311-1.907 2.87z\"\n        />\n      </svg>\n    );\n  },\n);\n\nDroplet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Droplet;\n"
  },
  {
    "path": "src/icons/duffle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst DuffleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-duffle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.007 4.097q.011-.146.027-.298c.05-.464.141-.979.313-1.45.169-.465.432-.933.853-1.249 1.115-.836 2.485-.836 3.6 0 .42.316.684.784.853 1.25.171.47.263.985.313 1.449q.016.15.027.298c1.401.194 2.65.531 3.525 1.012 2.126 1.169 1.446 6.095 1.089 8.018a.954.954 0 0 1-.95.772H1.343a.954.954 0 0 1-.95-.772c-.357-1.923-1.037-6.85 1.09-8.018.873-.48 2.123-.818 3.524-1.012M4.05 5.633a22 22 0 0 0-1.565.352l-.091.026-.034.01a.5.5 0 0 0 .282.959l.005-.002.02-.005.08-.023a21 21 0 0 1 1.486-.334A21 21 0 0 1 8 6.25c1.439 0 2.781.183 3.767.367a21 21 0 0 1 1.567.356l.02.005.004.001a.5.5 0 0 0 .283-.959h-.003l-.006-.002-.025-.007a15 15 0 0 0-.43-.113 22 22 0 0 0-1.226-.265A22 22 0 0 0 8 5.25c-1.518 0-2.926.192-3.95.383M6.8 1.9c-.203.153-.377.42-.513.791a5.3 5.3 0 0 0-.265 1.292 35 35 0 0 1 1.374-.076c.866-.022 1.742.003 2.584.076a5.3 5.3 0 0 0-.266-1.292c-.135-.372-.309-.638-.513-.791-.76-.57-1.64-.57-2.4 0Z\" />\n      </svg>\n    );\n  },\n);\n\nDuffleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default DuffleFill;\n"
  },
  {
    "path": "src/icons/duffle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Duffle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-duffle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5.75c1.388 0 2.673.193 3.609.385a18 18 0 0 1 1.43.354l.112.034.002.001h.001a.5.5 0 0 1-.308.952l-.004-.002-.018-.005a17 17 0 0 0-1.417-.354A17.3 17.3 0 0 0 8 6.75a17.3 17.3 0 0 0-3.408.365 17 17 0 0 0-1.416.354l-.018.005-.003.001a.5.5 0 1 1-.308-.95A17.3 17.3 0 0 1 8 5.75\" />\n        <path d=\"M5.229 2.722c-.126.461-.19.945-.222 1.375-1.401.194-2.65.531-3.525 1.012C-.644 6.278.036 11.204.393 13.127a.954.954 0 0 0 .95.772h13.314a.954.954 0 0 0 .95-.772c.357-1.923 1.037-6.85-1.09-8.018-.873-.48-2.123-.818-3.524-1.012a7.4 7.4 0 0 0-.222-1.375c-.162-.593-.445-1.228-.971-1.622-1.115-.836-2.485-.836-3.6 0-.526.394-.81 1.03-.971 1.622M9.2 1.9c.26.195.466.57.606 1.085.088.322.142.667.173.998a23.3 23.3 0 0 0-3.958 0 6 6 0 0 1 .173-.998c.14-.515.346-.89.606-1.085.76-.57 1.64-.57 2.4 0M8 4.9c2.475 0 4.793.402 6.036 1.085.238.13.472.406.655.93.183.522.28 1.195.303 1.952.047 1.486-.189 3.088-.362 4.032H1.368c-.173-.944-.409-2.545-.362-4.032.024-.757.12-1.43.303-1.952.183-.524.417-.8.655-.93C3.207 5.302 5.525 4.9 8 4.9\" />\n      </svg>\n    );\n  },\n);\n\nDuffle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Duffle;\n"
  },
  {
    "path": "src/icons/ear-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EarFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ear-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 0A5.5 5.5 0 0 0 3 5.5v7.047a3.453 3.453 0 0 0 6.687 1.212l.51-1.363a4.6 4.6 0 0 1 .67-1.197l2.008-2.581A5.34 5.34 0 0 0 8.66 0zM7 5.5v2.695q.168-.09.332-.192c.327-.208.577-.44.72-.727a.5.5 0 1 1 .895.448c-.256.513-.673.865-1.079 1.123A9 9 0 0 1 7 9.313V11.5a.5.5 0 0 1-1 0v-6a2.5 2.5 0 0 1 5 0V6a.5.5 0 0 1-1 0v-.5a1.5 1.5 0 1 0-3 0\" />\n      </svg>\n    );\n  },\n);\n\nEarFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EarFill;\n"
  },
  {
    "path": "src/icons/ear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ear', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 1A4.5 4.5 0 0 0 4 5.5v7.047a2.453 2.453 0 0 0 4.75.861l.512-1.363a5.6 5.6 0 0 1 .816-1.46l2.008-2.581A4.34 4.34 0 0 0 8.66 1zM3 5.5A5.5 5.5 0 0 1 8.5 0h.16a5.34 5.34 0 0 1 4.215 8.618l-2.008 2.581a4.6 4.6 0 0 0-.67 1.197l-.51 1.363A3.453 3.453 0 0 1 3 12.547zM8.5 4A1.5 1.5 0 0 0 7 5.5v2.695q.168-.09.332-.192c.327-.208.577-.44.72-.727a.5.5 0 1 1 .895.448c-.256.513-.673.865-1.079 1.123A9 9 0 0 1 7 9.313V11.5a.5.5 0 0 1-1 0v-6a2.5 2.5 0 0 1 5 0V6a.5.5 0 0 1-1 0v-.5A1.5 1.5 0 0 0 8.5 4\" />\n      </svg>\n    );\n  },\n);\n\nEar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ear;\n"
  },
  {
    "path": "src/icons/earbuds.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Earbuds = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-earbuds', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.825 4.138c.596 2.141-.36 3.593-2.389 4.117a4.4 4.4 0 0 1-2.018.054c-.048-.01.9 2.778 1.522 4.61l.41 1.205a.52.52 0 0 1-.346.659l-.593.19a.55.55 0 0 1-.69-.34L.184 6.99c-.696-2.137.662-4.309 2.564-4.8 2.029-.523 3.402 0 4.076 1.948zm-.868 2.221c.43-.112.561-.993.292-1.969-.269-.975-.836-1.675-1.266-1.563s-.561.994-.292 1.969.836 1.675 1.266 1.563m3.218-2.221c-.596 2.141.36 3.593 2.389 4.117a4.4 4.4 0 0 0 2.018.054c.048-.01-.9 2.778-1.522 4.61l-.41 1.205a.52.52 0 0 0 .346.659l.593.19c.289.092.6-.06.69-.34l2.536-7.643c.696-2.137-.662-4.309-2.564-4.8-2.029-.523-3.402 0-4.076 1.948m.868 2.221c-.43-.112-.561-.993-.292-1.969.269-.975.836-1.675 1.266-1.563s.561.994.292 1.969-.836 1.675-1.266 1.563\"\n        />\n      </svg>\n    );\n  },\n);\n\nEarbuds.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Earbuds;\n"
  },
  {
    "path": "src/icons/easel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EaselFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.473.337a.5.5 0 0 0-.946 0L6.954 2H2a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h1.85l-1.323 3.837a.5.5 0 1 0 .946.326L4.908 11H7.5v2.5a.5.5 0 0 0 1 0V11h2.592l1.435 4.163a.5.5 0 0 0 .946-.326L12.15 11H14a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H9.046z\" />\n      </svg>\n    );\n  },\n);\n\nEaselFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EaselFill;\n"
  },
  {
    "path": "src/icons/easel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Easel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a.5.5 0 0 1 .473.337L9.046 2H14a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-1.85l1.323 3.837a.5.5 0 1 1-.946.326L11.092 11H8.5v3a.5.5 0 0 1-1 0v-3H4.908l-1.435 4.163a.5.5 0 1 1-.946-.326L3.85 11H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h4.954L7.527.337A.5.5 0 0 1 8 0M2 3v7h12V3z\" />\n      </svg>\n    );\n  },\n);\n\nEasel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Easel;\n"
  },
  {
    "path": "src/icons/easel2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Easel2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.447.276a.5.5 0 0 0-.894 0L7.19 1H2.5A1.5 1.5 0 0 0 1 2.5V10h14V2.5A1.5 1.5 0 0 0 13.5 1H8.809z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M.5 11a.5.5 0 0 0 0 1h2.86l-.845 3.379a.5.5 0 0 0 .97.242L3.89 14h8.22l.405 1.621a.5.5 0 0 0 .97-.242L12.64 12h2.86a.5.5 0 0 0 0-1zm3.64 2 .25-1h7.22l.25 1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEasel2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Easel2Fill;\n"
  },
  {
    "path": "src/icons/easel2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Easel2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a.5.5 0 0 1 .447.276L8.81 1h4.69A1.5 1.5 0 0 1 15 2.5V11h.5a.5.5 0 0 1 0 1h-2.86l.845 3.379a.5.5 0 0 1-.97.242L12.11 14H3.89l-.405 1.621a.5.5 0 0 1-.97-.242L3.36 12H.5a.5.5 0 0 1 0-1H1V2.5A1.5 1.5 0 0 1 2.5 1h4.691l.362-.724A.5.5 0 0 1 8 0M2 11h12V2.5a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5zm9.61 1H4.39l-.25 1h7.72z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEasel2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Easel2;\n"
  },
  {
    "path": "src/icons/easel3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Easel3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 12v1.134a1 1 0 1 1-1 0V12h-5A1.5 1.5 0 0 1 1 10.5V3h14v7.5a1.5 1.5 0 0 1-1.5 1.5zm7-10a.5.5 0 0 0 0-1H.5a.5.5 0 0 0 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nEasel3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Easel3Fill;\n"
  },
  {
    "path": "src/icons/easel3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Easel3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-easel3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.5 13.134V12h5a1.5 1.5 0 0 0 1.5-1.5V2h.5a.5.5 0 0 0 0-1H.5a.5.5 0 0 0 0 1H1v8.5A1.5 1.5 0 0 0 2.5 12h5v1.134a1 1 0 1 0 1 0M2 2v8.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5V2z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEasel3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Easel3;\n"
  },
  {
    "path": "src/icons/egg-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EggFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-egg-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 10a6 6 0 0 1-12 0C2 5.686 5 0 8 0s6 5.686 6 10\" />\n      </svg>\n    );\n  },\n);\n\nEggFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EggFill;\n"
  },
  {
    "path": "src/icons/egg-fried.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EggFried = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-egg-fried', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n        <path d=\"M13.997 5.17a5 5 0 0 0-8.101-4.09A5 5 0 0 0 1.28 9.342a5 5 0 0 0 8.336 5.109 3.5 3.5 0 0 0 5.201-4.065 3.001 3.001 0 0 0-.822-5.216zm-1-.034a1 1 0 0 0 .668.977 2.001 2.001 0 0 1 .547 3.478 1 1 0 0 0-.341 1.113 2.5 2.5 0 0 1-3.715 2.905 1 1 0 0 0-1.262.152 4 4 0 0 1-6.67-4.087 1 1 0 0 0-.2-1 4 4 0 0 1 3.693-6.61 1 1 0 0 0 .8-.2 4 4 0 0 1 6.48 3.273z\" />\n      </svg>\n    );\n  },\n);\n\nEggFried.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EggFried;\n"
  },
  {
    "path": "src/icons/egg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Egg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-egg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15a5 5 0 0 1-5-5c0-1.956.69-4.286 1.742-6.12.524-.913 1.112-1.658 1.704-2.164C7.044 1.206 7.572 1 8 1s.956.206 1.554.716c.592.506 1.18 1.251 1.704 2.164C12.31 5.714 13 8.044 13 10a5 5 0 0 1-5 5m0 1a6 6 0 0 0 6-6c0-4.314-3-10-6-10S2 5.686 2 10a6 6 0 0 0 6 6\" />\n      </svg>\n    );\n  },\n);\n\nEgg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Egg;\n"
  },
  {
    "path": "src/icons/eject-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EjectFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eject-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.27 1.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H1.656C.78 9.5.326 8.455.926 7.816zM.5 11.5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-13a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nEjectFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EjectFill;\n"
  },
  {
    "path": "src/icons/eject.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Eject = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eject', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.27 1.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H1.656C.78 9.5.326 8.455.926 7.816zM14.346 8.5 8 1.731 1.654 8.5zM.5 11.5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-13a1 1 0 0 1-1-1zm14 0h-13v1h13z\" />\n      </svg>\n    );\n  },\n);\n\nEject.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Eject;\n"
  },
  {
    "path": "src/icons/emoji-angry-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiAngryFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-angry-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M4.053 4.276a.5.5 0 0 1 .67-.223l2 1a.5.5 0 0 1 .166.76c.071.206.111.44.111.687C7 7.328 6.552 8 6 8s-1-.672-1-1.5c0-.408.109-.778.285-1.049l-1.009-.504a.5.5 0 0 1-.223-.67zm.232 8.157a.5.5 0 0 1-.183-.683A4.5 4.5 0 0 1 8 9.5a4.5 4.5 0 0 1 3.898 2.25.5.5 0 1 1-.866.5A3.5 3.5 0 0 0 8 10.5a3.5 3.5 0 0 0-3.032 1.75.5.5 0 0 1-.683.183M10 8c-.552 0-1-.672-1-1.5 0-.247.04-.48.11-.686a.502.502 0 0 1 .166-.761l2-1a.5.5 0 1 1 .448.894l-1.009.504c.176.27.285.64.285 1.049 0 .828-.448 1.5-1 1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiAngryFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiAngryFill;\n"
  },
  {
    "path": "src/icons/emoji-angry.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiAngry = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-angry', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.285 12.433a.5.5 0 0 0 .683-.183A3.5 3.5 0 0 1 8 10.5c1.295 0 2.426.703 3.032 1.75a.5.5 0 0 0 .866-.5A4.5 4.5 0 0 0 8 9.5a4.5 4.5 0 0 0-3.898 2.25.5.5 0 0 0 .183.683m6.991-8.38a.5.5 0 1 1 .448.894l-1.009.504c.176.27.285.64.285 1.049 0 .828-.448 1.5-1 1.5s-1-.672-1-1.5c0-.247.04-.48.11-.686a.502.502 0 0 1 .166-.761zm-6.552 0a.5.5 0 0 0-.448.894l1.009.504A1.94 1.94 0 0 0 5 6.5C5 7.328 5.448 8 6 8s1-.672 1-1.5c0-.247-.04-.48-.11-.686a.502.502 0 0 0-.166-.761z\" />\n      </svg>\n    );\n  },\n);\n\nEmojiAngry.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiAngry;\n"
  },
  {
    "path": "src/icons/emoji-astonished-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiAstonishedFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-astonished-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.884-3.978a2.1 2.1 0 0 1 .53.332.5.5 0 0 0 .708-.708h-.001v-.001a2 2 0 0 0-.237-.197 3 3 0 0 0-.606-.345 3 3 0 0 0-2.168-.077.5.5 0 1 0 .316.948 2 2 0 0 1 1.458.048m-4.774-.048a.5.5 0 0 0 .316-.948 3 3 0 0 0-2.167.077 3.1 3.1 0 0 0-.773.478q-.036.03-.07.064l-.002.001a.5.5 0 1 0 .728.689 2 2 0 0 1 .51-.313 2 2 0 0 1 1.458-.048M7 6.5C7 5.672 6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8s1-.672 1-1.5m4 0c0-.828-.448-1.5-1-1.5s-1 .672-1 1.5S9.448 8 10 8s1-.672 1-1.5m-5.247 4.746c-.383.478.08 1.06.687.98q1.56-.202 3.12 0c.606.08 1.07-.502.687-.98C9.747 10.623 8.998 10 8 10s-1.747.623-2.247 1.246\" />\n      </svg>\n    );\n  },\n);\n\nEmojiAstonishedFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiAstonishedFill;\n"
  },
  {
    "path": "src/icons/emoji-astonished.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiAstonished = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-astonished', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5M4.884 4.022a2 2 0 0 1 1.458-.048.5.5 0 0 0 .316-.948 3 3 0 0 0-2.167.077 3.1 3.1 0 0 0-.773.478q-.036.03-.07.064l-.002.001a.5.5 0 0 0 .707.708l-.001.002.001-.002a2 2 0 0 1 .122-.1 2 2 0 0 1 .41-.232Zm6.232 0a2 2 0 0 0-1.458-.048.5.5 0 1 1-.316-.948 3 3 0 0 1 2.168.077 3 3 0 0 1 .773.478l.07.064v.001a.5.5 0 0 1-.706.708l.002.002-.002-.002a2 2 0 0 0-.122-.1 2 2 0 0 0-.41-.232ZM8 10c-.998 0-1.747.623-2.247 1.246-.383.478.08 1.06.687.98q1.56-.202 3.12 0c.606.08 1.07-.502.687-.98C9.747 10.623 8.998 10 8 10\" />\n      </svg>\n    );\n  },\n);\n\nEmojiAstonished.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiAstonished;\n"
  },
  {
    "path": "src/icons/emoji-dizzy-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiDizzyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-dizzy-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M4.146 5.146a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 1 1 .708.708l-.647.646.647.646a.5.5 0 1 1-.708.708L5.5 7.207l-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708m5 0a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708M8 13a2 2 0 1 1 0-4 2 2 0 0 1 0 4\" />\n      </svg>\n    );\n  },\n);\n\nEmojiDizzyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiDizzyFill;\n"
  },
  {
    "path": "src/icons/emoji-dizzy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiDizzy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-dizzy', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M9.146 5.146a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708m-5 0a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 1 1 .708.708l-.647.646.647.646a.5.5 0 1 1-.708.708L5.5 7.207l-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708M10 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nEmojiDizzy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiDizzy;\n"
  },
  {
    "path": "src/icons/emoji-expressionless-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiExpressionlessFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-expressionless-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M4.5 6h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1m5 0h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1m-5 4h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nEmojiExpressionlessFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiExpressionlessFill;\n"
  },
  {
    "path": "src/icons/emoji-expressionless.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiExpressionless = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-expressionless', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4 10.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m5 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiExpressionless.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiExpressionless;\n"
  },
  {
    "path": "src/icons/emoji-frown-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiFrownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-frown-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m-2.715 5.933a.5.5 0 0 1-.183-.683A4.5 4.5 0 0 1 8 9.5a4.5 4.5 0 0 1 3.898 2.25.5.5 0 0 1-.866.5A3.5 3.5 0 0 0 8 10.5a3.5 3.5 0 0 0-3.032 1.75.5.5 0 0 1-.683.183M10 8c-.552 0-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5S10.552 8 10 8\" />\n      </svg>\n    );\n  },\n);\n\nEmojiFrownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiFrownFill;\n"
  },
  {
    "path": "src/icons/emoji-frown.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiFrown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-frown', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.285 12.433a.5.5 0 0 0 .683-.183A3.5 3.5 0 0 1 8 10.5c1.295 0 2.426.703 3.032 1.75a.5.5 0 0 0 .866-.5A4.5 4.5 0 0 0 8 9.5a4.5 4.5 0 0 0-3.898 2.25.5.5 0 0 0 .183.683M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiFrown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiFrown;\n"
  },
  {
    "path": "src/icons/emoji-grimace-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiGrimaceFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-grimace-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M7 6.25C7 5.56 6.552 5 6 5s-1 .56-1 1.25.448 1.25 1 1.25 1-.56 1-1.25m3 1.25c.552 0 1-.56 1-1.25S10.552 5 10 5s-1 .56-1 1.25.448 1.25 1 1.25m1.5 4.5a1.5 1.5 0 0 0 1.48-1.25v-.003a1.5 1.5 0 0 0 0-.497A1.5 1.5 0 0 0 11.5 9h-7a1.5 1.5 0 0 0-1.48 1.25v.003a1.5 1.5 0 0 0 0 .497A1.5 1.5 0 0 0 4.5 12zm-7.969-1.25a1 1 0 0 0 .969.75h.25v-.75zm8.938 0a1 1 0 0 1-.969.75h-.25v-.75zM11.5 9.5a1 1 0 0 1 .969.75H11.25V9.5zm-7.969.75A1 1 0 0 1 4.5 9.5h.25v.75zM5.25 11.5h1v-.75h-1zm2.5 0h-1v-.75h1zm1.5 0h-1v-.75h1zm1.5 0h-1v-.75h1zm-1-2h1v.75h-1zm-1.5 0h1v.75h-1zm-1.5 0h1v.75h-1zm-1.5 0h1v.75h-1z\" />\n      </svg>\n    );\n  },\n);\n\nEmojiGrimaceFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiGrimaceFill;\n"
  },
  {
    "path": "src/icons/emoji-grimace.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiGrimace = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-grimace', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 6.25c0 .69-.448 1.25-1 1.25s-1-.56-1-1.25S5.448 5 6 5s1 .56 1 1.25m3 1.25c.552 0 1-.56 1-1.25S10.552 5 10 5s-1 .56-1 1.25.448 1.25 1 1.25m2.98 3.25A1.5 1.5 0 0 1 11.5 12h-7a1.5 1.5 0 0 1-1.48-1.747v-.003A1.5 1.5 0 0 1 4.5 9h7a1.5 1.5 0 0 1 1.48 1.747zm-8.48.75h.25v-.75H3.531a1 1 0 0 0 .969.75m7 0a1 1 0 0 0 .969-.75H11.25v.75zm.969-1.25a1 1 0 0 0-.969-.75h-.25v.75zM4.5 9.5a1 1 0 0 0-.969.75H4.75V9.5zm1.75 2v-.75h-1v.75zm.5 0h1v-.75h-1zm1.5 0h1v-.75h-1zm1.5 0h1v-.75h-1zm1-2h-1v.75h1zm-1.5 0h-1v.75h1zm-1.5 0h-1v.75h1zm-1.5 0h-1v.75h1z\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m0-1A7 7 0 1 1 8 1a7 7 0 0 1 0 14\" />\n      </svg>\n    );\n  },\n);\n\nEmojiGrimace.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiGrimace;\n"
  },
  {
    "path": "src/icons/emoji-grin-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiGrinFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-grin-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M6.488 7c-.23-.598-.661-1-1.155-1-.493 0-.924.402-1.155 1A2.8 2.8 0 0 1 4 6c0-1.105.597-2 1.333-2 .737 0 1.334.895 1.334 2 0 .364-.065.706-.179 1m5.334 0c-.23-.598-.662-1-1.155-1-.494 0-.925.402-1.155 1a2.8 2.8 0 0 1-.179-1c0-1.105.597-2 1.334-2C11.403 4 12 4.895 12 6c0 .364-.065.706-.178 1M2.696 8.756a.48.48 0 0 1 .382-.118C4.348 8.786 6.448 9 8 9c1.553 0 3.653-.214 4.922-.362a.48.48 0 0 1 .383.118.3.3 0 0 1 .096.29c-.09.47-.242.921-.445 1.342-.263.035-.576.075-.929.115A37 37 0 0 1 8 10.75c-1.475 0-2.934-.123-4.027-.247-.353-.04-.666-.08-.93-.115A5.5 5.5 0 0 1 2.6 9.045a.3.3 0 0 1 .097-.29ZM8 13.5a5.49 5.49 0 0 1-4.256-2.017l.116.014c1.115.126 2.615.253 4.14.253s3.025-.127 4.14-.253l.117-.014A5.49 5.49 0 0 1 8 13.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiGrinFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiGrinFill;\n"
  },
  {
    "path": "src/icons/emoji-grin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiGrin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-grin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.946 11.398A6.002 6.002 0 0 1 2.108 9.14c-.114-.595.426-1.068 1.028-.997C4.405 8.289 6.48 8.5 8 8.5s3.595-.21 4.864-.358c.602-.07 1.142.402 1.028.998a5.95 5.95 0 0 1-.946 2.258m-.078-2.25C11.588 9.295 9.539 9.5 8 9.5s-3.589-.205-4.868-.352c.11.468.286.91.517 1.317A37 37 0 0 0 8 10.75a37 37 0 0 0 4.351-.285c.231-.407.407-.85.517-1.317m-1.36 2.416c-1.02.1-2.255.186-3.508.186s-2.488-.086-3.507-.186A5 5 0 0 0 8 13a5 5 0 0 0 3.507-1.436ZM6.488 7c.114-.294.179-.636.179-1 0-1.105-.597-2-1.334-2C4.597 4 4 4.895 4 6c0 .364.065.706.178 1 .23-.598.662-1 1.155-1 .494 0 .925.402 1.155 1M12 6c0 .364-.065.706-.178 1-.23-.598-.662-1-1.155-1-.494 0-.925.402-1.155 1a2.8 2.8 0 0 1-.179-1c0-1.105.597-2 1.334-2C11.403 4 12 4.895 12 6\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m0-1A7 7 0 1 1 8 1a7 7 0 0 1 0 14\" />\n      </svg>\n    );\n  },\n);\n\nEmojiGrin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiGrin;\n"
  },
  {
    "path": "src/icons/emoji-heart-eyes-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiHeartEyesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-heart-eyes-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M4.756 4.566c.763-1.424 4.02-.12.952 3.434-4.496-1.596-2.35-4.298-.952-3.434m6.559 5.448a.5.5 0 0 1 .548.736A4.5 4.5 0 0 1 7.965 13a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .548-.736h.005l.017.005.067.015.252.055c.215.046.515.108.857.169.693.124 1.522.242 2.152.242s1.46-.118 2.152-.242a27 27 0 0 0 1.109-.224l.067-.015.017-.004.005-.002zm-.07-5.448c1.397-.864 3.543 1.838-.953 3.434-3.067-3.554.19-4.858.952-3.434z\" />\n      </svg>\n    );\n  },\n);\n\nEmojiHeartEyesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiHeartEyesFill;\n"
  },
  {
    "path": "src/icons/emoji-heart-eyes.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiHeartEyes = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-heart-eyes', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M11.315 10.014a.5.5 0 0 1 .548.736A4.5 4.5 0 0 1 7.965 13a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .548-.736h.005l.017.005.067.015.252.055c.215.046.515.108.857.169.693.124 1.522.242 2.152.242s1.46-.118 2.152-.242a27 27 0 0 0 1.109-.224l.067-.015.017-.004.005-.002zM4.756 4.566c.763-1.424 4.02-.12.952 3.434-4.496-1.596-2.35-4.298-.952-3.434m6.488 0c1.398-.864 3.544 1.838-.952 3.434-3.067-3.554.19-4.858.952-3.434\" />\n      </svg>\n    );\n  },\n);\n\nEmojiHeartEyes.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiHeartEyes;\n"
  },
  {
    "path": "src/icons/emoji-kiss-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiKissFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-kiss-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 8a8 8 0 1 0-2.697 5.99c-.972-.665-1.632-1.356-1.99-2.062-.388-.766-.419-1.561-.075-2.23.496-.97 1.73-1.466 2.762-1.05.65-.262 1.38-.162 1.957.19Q16 8.425 16 8M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m1.512 3.647c-.347.08-.737.198-1.107.319a.5.5 0 1 1-.31-.95c.38-.125.802-.254 1.192-.343.37-.086.78-.153 1.103-.108.16.022.394.085.561.286.188.226.187.497.131.705a1.9 1.9 0 0 1-.31.593q-.115.16-.275.343.16.186.276.347c.142.197.256.397.31.595.055.208.056.479-.132.706-.168.2-.404.262-.563.284-.323.043-.733-.027-1.102-.113a15 15 0 0 1-1.191-.345.5.5 0 1 1 .31-.95c.371.12.761.24 1.109.321q.264.062.446.084a6 6 0 0 0-.502-.584.5.5 0 0 1 .002-.695 5.5 5.5 0 0 0 .5-.577 5 5 0 0 0-.448.082m.766-.086-.006-.002zm.002 1.867-.005.001.006-.002Zm.157-4.685a.5.5 0 0 1-.874-.486A1.93 1.93 0 0 1 10.25 5.75c.73 0 1.356.412 1.687 1.007a.5.5 0 1 1-.874.486.93.93 0 0 0-.813-.493.93.93 0 0 0-.813.493M14 9.828c1.11-1.14 3.884.856 0 3.422-3.884-2.566-1.11-4.562 0-3.421Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEmojiKissFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiKissFill;\n"
  },
  {
    "path": "src/icons/emoji-kiss.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiKiss = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-kiss', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.493 13.368a7 7 0 1 1 2.489-4.858c.344.033.68.147.975.328a8 8 0 1 0-2.654 5.152 9 9 0 0 1-.81-.622m-3.731-3.22a13 13 0 0 0-1.107.318.5.5 0 1 1-.31-.95c.38-.125.802-.254 1.192-.343.37-.086.78-.153 1.103-.108.16.022.394.085.561.286.188.226.187.497.131.705a1.9 1.9 0 0 1-.31.593q-.115.16-.275.343.16.186.276.347c.142.197.256.397.31.595.055.208.056.479-.132.706-.168.2-.404.262-.563.284-.323.043-.733-.027-1.102-.113a15 15 0 0 1-1.191-.345.5.5 0 1 1 .31-.95c.371.12.761.24 1.109.321q.264.062.446.084a6 6 0 0 0-.502-.584.5.5 0 0 1 .002-.695 5.5 5.5 0 0 0 .5-.577 5 5 0 0 0-.448.082Zm.766-.087-.003-.001-.003-.001zm.002 1.867-.006.001zM6 8c.552 0 1-.672 1-1.5S6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8m2.757-.563a.5.5 0 0 0 .68-.194.93.93 0 0 1 .813-.493c.339 0 .645.19.813.493a.5.5 0 0 0 .874-.486A1.93 1.93 0 0 0 10.25 5.75c-.73 0-1.356.412-1.687 1.007a.5.5 0 0 0 .194.68M14 9.828c1.11-1.14 3.884.856 0 3.422-3.884-2.566-1.11-4.562 0-3.421Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEmojiKiss.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiKiss;\n"
  },
  {
    "path": "src/icons/emoji-laughing-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiLaughingFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-laughing-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M7 6.5c0 .501-.164.396-.415.235C6.42 6.629 6.218 6.5 6 6.5s-.42.13-.585.235C5.164 6.896 5 7 5 6.5 5 5.672 5.448 5 6 5s1 .672 1 1.5m5.331 3a1 1 0 0 1 0 1A5 5 0 0 1 8 13a5 5 0 0 1-4.33-2.5A1 1 0 0 1 4.535 9h6.93a1 1 0 0 1 .866.5m-1.746-2.765C10.42 6.629 10.218 6.5 10 6.5s-.42.13-.585.235C9.164 6.896 9 7 9 6.5c0-.828.448-1.5 1-1.5s1 .672 1 1.5c0 .501-.164.396-.415.235\" />\n      </svg>\n    );\n  },\n);\n\nEmojiLaughingFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiLaughingFill;\n"
  },
  {
    "path": "src/icons/emoji-laughing.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiLaughing = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-laughing', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M12.331 9.5a1 1 0 0 1 0 1A5 5 0 0 1 8 13a5 5 0 0 1-4.33-2.5A1 1 0 0 1 4.535 9h6.93a1 1 0 0 1 .866.5M7 6.5c0 .828-.448 0-1 0s-1 .828-1 0S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 0-1 0s-1 .828-1 0S9.448 5 10 5s1 .672 1 1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiLaughing.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiLaughing;\n"
  },
  {
    "path": "src/icons/emoji-neutral-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiNeutralFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-neutral-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m-3 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5M10 8c-.552 0-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5S10.552 8 10 8\" />\n      </svg>\n    );\n  },\n);\n\nEmojiNeutralFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiNeutralFill;\n"
  },
  {
    "path": "src/icons/emoji-neutral.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiNeutral = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-neutral', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4 10.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5m3-4C7 5.672 6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8s1-.672 1-1.5m4 0c0-.828-.448-1.5-1-1.5s-1 .672-1 1.5S9.448 8 10 8s1-.672 1-1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiNeutral.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiNeutral;\n"
  },
  {
    "path": "src/icons/emoji-smile-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSmileFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-smile-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5M4.285 9.567a.5.5 0 0 1 .683.183A3.5 3.5 0 0 0 8 11.5a3.5 3.5 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .183-.683M10 8c-.552 0-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5S10.552 8 10 8\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSmileFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSmileFill;\n"
  },
  {
    "path": "src/icons/emoji-smile-upside-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSmileUpsideDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-smile-upside-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M7 9.5C7 8.672 6.552 8 6 8s-1 .672-1 1.5.448 1.5 1 1.5 1-.672 1-1.5M4.285 6.433a.5.5 0 0 0 .683-.183A3.5 3.5 0 0 1 8 4.5c1.295 0 2.426.703 3.032 1.75a.5.5 0 0 0 .866-.5A4.5 4.5 0 0 0 8 3.5a4.5 4.5 0 0 0-3.898 2.25.5.5 0 0 0 .183.683M10 8c-.552 0-1 .672-1 1.5s.448 1.5 1 1.5 1-.672 1-1.5S10.552 8 10 8\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSmileUpsideDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSmileUpsideDownFill;\n"
  },
  {
    "path": "src/icons/emoji-smile-upside-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSmileUpsideDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-smile-upside-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1m0-1a8 8 0 1 1 0 16A8 8 0 0 1 8 0\" />\n        <path d=\"M4.285 6.433a.5.5 0 0 0 .683-.183A3.5 3.5 0 0 1 8 4.5c1.295 0 2.426.703 3.032 1.75a.5.5 0 0 0 .866-.5A4.5 4.5 0 0 0 8 3.5a4.5 4.5 0 0 0-3.898 2.25.5.5 0 0 0 .183.683M7 9.5C7 8.672 6.552 8 6 8s-1 .672-1 1.5.448 1.5 1 1.5 1-.672 1-1.5m4 0c0-.828-.448-1.5-1-1.5s-1 .672-1 1.5.448 1.5 1 1.5 1-.672 1-1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSmileUpsideDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSmileUpsideDown;\n"
  },
  {
    "path": "src/icons/emoji-smile.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSmile = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-smile', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.285 9.567a.5.5 0 0 1 .683.183A3.5 3.5 0 0 0 8 11.5a3.5 3.5 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .183-.683M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSmile.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSmile;\n"
  },
  {
    "path": "src/icons/emoji-sunglasses-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSunglassesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-sunglasses-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M2.31 5.243A1 1 0 0 1 3.28 4H6a1 1 0 0 1 1 1v.116A4.2 4.2 0 0 1 8 5c.35 0 .69.04 1 .116V5a1 1 0 0 1 1-1h2.72a1 1 0 0 1 .97 1.243l-.311 1.242A2 2 0 0 1 11.439 8H11a2 2 0 0 1-1.994-1.839A3 3 0 0 0 8 6c-.393 0-.74.064-1.006.161A2 2 0 0 1 5 8h-.438a2 2 0 0 1-1.94-1.515zM4.969 9.75A3.5 3.5 0 0 0 8 11.5a3.5 3.5 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .866-.5z\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSunglassesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSunglassesFill;\n"
  },
  {
    "path": "src/icons/emoji-sunglasses.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSunglasses = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-sunglasses', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.968 9.75a.5.5 0 1 0-.866.5A4.5 4.5 0 0 0 8 12.5a4.5 4.5 0 0 0 3.898-2.25.5.5 0 1 0-.866-.5A3.5 3.5 0 0 1 8 11.5a3.5 3.5 0 0 1-3.032-1.75M7 5.116V5a1 1 0 0 0-1-1H3.28a1 1 0 0 0-.97 1.243l.311 1.242A2 2 0 0 0 4.561 8H5a2 2 0 0 0 1.994-1.839A3 3 0 0 1 8 6c.393 0 .74.064 1.006.161A2 2 0 0 0 11 8h.438a2 2 0 0 0 1.94-1.515l.311-1.242A1 1 0 0 0 12.72 4H10a1 1 0 0 0-1 1v.116A4.2 4.2 0 0 0 8 5c-.35 0-.69.04-1 .116\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-1 0A7 7 0 1 0 1 8a7 7 0 0 0 14 0\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSunglasses.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSunglasses;\n"
  },
  {
    "path": "src/icons/emoji-surprise-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSurpriseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-surprise-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M7 5.5C7 4.672 6.552 4 6 4s-1 .672-1 1.5S5.448 7 6 7s1-.672 1-1.5m4 0c0-.828-.448-1.5-1-1.5s-1 .672-1 1.5S9.448 7 10 7s1-.672 1-1.5M8 13a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSurpriseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSurpriseFill;\n"
  },
  {
    "path": "src/icons/emoji-surprise.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiSurprise = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-surprise', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M7 5.5C7 6.328 6.552 7 6 7s-1-.672-1-1.5S5.448 4 6 4s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 4 10 4s1 .672 1 1.5M10 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nEmojiSurprise.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiSurprise;\n"
  },
  {
    "path": "src/icons/emoji-tear-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiTearFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-tear-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M9.5 3.5a.5.5 0 0 0 .5.5c.838 0 1.65.416 2.053 1.224a.5.5 0 1 0 .894-.448C12.351 3.584 11.162 3 10 3a.5.5 0 0 0-.5.5M7 6.5C7 5.672 6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8s1-.672 1-1.5M4.5 13c.828 0 1.5-.746 1.5-1.667 0-.706-.882-2.29-1.294-2.99a.238.238 0 0 0-.412 0C3.882 9.044 3 10.628 3 11.334 3 12.253 3.672 13 4.5 13M8 11.197c.916 0 1.607.408 2.25.826.212.138.424-.069.282-.277-.564-.83-1.558-2.049-2.532-2.049-.53 0-1.066.361-1.536.824q.126.27.232.535.069.174.135.373A3.1 3.1 0 0 1 8 11.197M10 8c.552 0 1-.672 1-1.5S10.552 5 10 5s-1 .672-1 1.5S9.448 8 10 8M6.5 3c-1.162 0-2.35.584-2.947 1.776a.5.5 0 1 0 .894.448C4.851 4.416 5.662 4 6.5 4a.5.5 0 0 0 0-1\" />\n      </svg>\n    );\n  },\n);\n\nEmojiTearFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiTearFill;\n"
  },
  {
    "path": "src/icons/emoji-tear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiTear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-tear', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M6.831 11.43A3.1 3.1 0 0 1 8 11.196c.916 0 1.607.408 2.25.826.212.138.424-.069.282-.277-.564-.83-1.558-2.049-2.532-2.049-.53 0-1.066.361-1.536.824q.126.27.232.535.069.174.135.373ZM6 11.333C6 12.253 5.328 13 4.5 13S3 12.254 3 11.333c0-.706.882-2.29 1.294-2.99a.238.238 0 0 1 .412 0c.412.7 1.294 2.284 1.294 2.99M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5m-1.5-3A.5.5 0 0 1 10 3c1.162 0 2.35.584 2.947 1.776a.5.5 0 1 1-.894.448C11.649 4.416 10.838 4 10 4a.5.5 0 0 1-.5-.5M7 3.5a.5.5 0 0 0-.5-.5c-1.162 0-2.35.584-2.947 1.776a.5.5 0 1 0 .894.448C4.851 4.416 5.662 4 6.5 4a.5.5 0 0 0 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nEmojiTear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiTear;\n"
  },
  {
    "path": "src/icons/emoji-wink-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiWinkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-wink-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M7 6.5C7 5.672 6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8s1-.672 1-1.5M4.285 9.567a.5.5 0 0 0-.183.683A4.5 4.5 0 0 0 8 12.5a4.5 4.5 0 0 0 3.898-2.25.5.5 0 1 0-.866-.5A3.5 3.5 0 0 1 8 11.5a3.5 3.5 0 0 1-3.032-1.75.5.5 0 0 0-.683-.183m5.152-3.31a.5.5 0 0 0-.874.486c.33.595.958 1.007 1.687 1.007s1.356-.412 1.687-1.007a.5.5 0 0 0-.874-.486.93.93 0 0 1-.813.493.93.93 0 0 1-.813-.493\" />\n      </svg>\n    );\n  },\n);\n\nEmojiWinkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiWinkFill;\n"
  },
  {
    "path": "src/icons/emoji-wink.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EmojiWink = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-emoji-wink', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.285 9.567a.5.5 0 0 1 .683.183A3.5 3.5 0 0 0 8 11.5a3.5 3.5 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .183-.683M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m1.757-.437a.5.5 0 0 1 .68.194.93.93 0 0 0 .813.493c.339 0 .645-.19.813-.493a.5.5 0 1 1 .874.486A1.93 1.93 0 0 1 10.25 7.75c-.73 0-1.356-.412-1.687-1.007a.5.5 0 0 1 .194-.68\" />\n      </svg>\n    );\n  },\n);\n\nEmojiWink.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EmojiWink;\n"
  },
  {
    "path": "src/icons/envelope-arrow-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeArrowDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-arrow-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zm.192 8.159 6.57-4.027L8 9.586l1.239-.757.367.225A4.49 4.49 0 0 0 8 12.5c0 .526.09 1.03.256 1.5H2a2 2 0 0 1-1.808-1.144M16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-1.646a.5.5 0 0 1-.722-.016l-1.149-1.25a.5.5 0 1 1 .737-.676l.28.305V11a.5.5 0 0 1 1 0v1.793l.396-.397a.5.5 0 0 1 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeArrowDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeArrowDownFill;\n"
  },
  {
    "path": "src/icons/envelope-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4.5a.5.5 0 0 1-1 0V5.383l-7 4.2-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-1.99zm1 7.105 4.708-2.897L1 5.383zM1 4v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-1.646a.5.5 0 0 1-.722-.016l-1.149-1.25a.5.5 0 1 1 .737-.676l.28.305V11a.5.5 0 0 1 1 0v1.793l.396-.397a.5.5 0 0 1 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeArrowDown;\n"
  },
  {
    "path": "src/icons/envelope-arrow-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeArrowUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-arrow-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zm.192 8.159 6.57-4.027L8 9.586l1.239-.757.367.225A4.49 4.49 0 0 0 8 12.5c0 .526.09 1.03.256 1.5H2a2 2 0 0 1-1.808-1.144M16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.354 1.25 1.25a.5.5 0 0 1-.708.708L13 12.207V14a.5.5 0 0 1-1 0v-1.717l-.28.305a.5.5 0 0 1-.737-.676l1.149-1.25a.5.5 0 0 1 .722-.016\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeArrowUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeArrowUpFill;\n"
  },
  {
    "path": "src/icons/envelope-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4.5a.5.5 0 0 1-1 0V5.383l-7 4.2-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-1.99zm1 7.105 4.708-2.897L1 5.383zM1 4v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.354 1.25 1.25a.5.5 0 0 1-.708.708L13 12.207V14a.5.5 0 0 1-1 0v-1.717l-.28.305a.5.5 0 0 1-.737-.676l1.149-1.25a.5.5 0 0 1 .722-.016\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeArrowUp;\n"
  },
  {
    "path": "src/icons/envelope-at-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeAtFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-at-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2A2 2 0 0 0 .05 3.555L8 8.414l7.95-4.859A2 2 0 0 0 14 2zm-2 9.8V4.698l5.803 3.546zm6.761-2.97-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 9.671V4.697l-5.803 3.546.338.208A4.5 4.5 0 0 1 12.5 8c1.414 0 2.675.652 3.5 1.671\" />\n        <path d=\"M15.834 12.244c0 1.168-.577 2.025-1.587 2.025-.503 0-1.002-.228-1.12-.648h-.043c-.118.416-.543.643-1.015.643-.77 0-1.259-.542-1.259-1.434v-.529c0-.844.481-1.4 1.26-1.4.585 0 .87.333.953.63h.03v-.568h.905v2.19c0 .272.18.42.411.42.315 0 .639-.415.639-1.39v-.118c0-1.277-.95-2.326-2.484-2.326h-.04c-1.582 0-2.64 1.067-2.64 2.724v.157c0 1.867 1.237 2.654 2.57 2.654h.045c.507 0 .935-.07 1.18-.18v.731c-.219.1-.643.175-1.237.175h-.044C10.438 16 9 14.82 9 12.646v-.214C9 10.36 10.421 9 12.485 9h.035c2.12 0 3.314 1.43 3.314 3.034zm-4.04.21v.227c0 .586.227.8.581.8.31 0 .564-.17.564-.743v-.367c0-.516-.275-.708-.572-.708-.346 0-.573.245-.573.791\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeAtFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeAtFill;\n"
  },
  {
    "path": "src/icons/envelope-at.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeAt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-at', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M14.247 14.269c1.01 0 1.587-.857 1.587-2.025v-.21C15.834 10.43 14.64 9 12.52 9h-.035C10.42 9 9 10.36 9 12.432v.214C9 14.82 10.438 16 12.358 16h.044c.594 0 1.018-.074 1.237-.175v-.73c-.245.11-.673.18-1.18.18h-.044c-1.334 0-2.571-.788-2.571-2.655v-.157c0-1.657 1.058-2.724 2.64-2.724h.04c1.535 0 2.484 1.05 2.484 2.326v.118c0 .975-.324 1.39-.639 1.39-.232 0-.41-.148-.41-.42v-2.19h-.906v.569h-.03c-.084-.298-.368-.63-.954-.63-.778 0-1.259.555-1.259 1.4v.528c0 .892.49 1.434 1.26 1.434.471 0 .896-.227 1.014-.643h.043c.118.42.617.648 1.12.648m-2.453-1.588v-.227c0-.546.227-.791.573-.791.297 0 .572.192.572.708v.367c0 .573-.253.744-.564.744-.354 0-.581-.215-.581-.8Z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeAt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeAt;\n"
  },
  {
    "path": "src/icons/envelope-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-1.993-1.679a.5.5 0 0 0-.686.172l-1.17 1.95-.547-.547a.5.5 0 0 0-.708.708l.774.773a.75.75 0 0 0 1.174-.144l1.335-2.226a.5.5 0 0 0-.172-.686\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeCheckFill;\n"
  },
  {
    "path": "src/icons/envelope-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-1.993-1.679a.5.5 0 0 0-.686.172l-1.17 1.95-.547-.547a.5.5 0 0 0-.708.708l.774.773a.75.75 0 0 0 1.174-.144l1.335-2.226a.5.5 0 0 0-.172-.686\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeCheck;\n"
  },
  {
    "path": "src/icons/envelope-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeDashFill;\n"
  },
  {
    "path": "src/icons/envelope-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeDash;\n"
  },
  {
    "path": "src/icons/envelope-exclamation-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeExclamationFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-exclamation-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1.5a.5.5 0 0 1-1 0V11a.5.5 0 0 1 1 0m0 3a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeExclamationFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeExclamationFill;\n"
  },
  {
    "path": "src/icons/envelope-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1.5a.5.5 0 0 1-1 0V11a.5.5 0 0 1 1 0m0 3a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeExclamation;\n"
  },
  {
    "path": "src/icons/envelope-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeFill;\n"
  },
  {
    "path": "src/icons/envelope-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555l-4.2 2.568-.051-.105c-.666-1.3-2.363-1.917-3.699-1.25-1.336-.667-3.033-.05-3.699 1.25l-.05.105zM11.584 8.91l-.073.139L16 11.8V4.697l-4.003 2.447c.027.562-.107 1.163-.413 1.767Zm-4.135 3.05c-1.048-.693-1.84-1.39-2.398-2.082L.19 12.856A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144L10.95 9.878c-.559.692-1.35 1.389-2.398 2.081L8 12.324l-.551-.365ZM4.416 8.91c-.306-.603-.44-1.204-.413-1.766L0 4.697v7.104l4.49-2.752z\" />\n        <path d=\"M8 5.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeHeartFill;\n"
  },
  {
    "path": "src/icons/envelope-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l3.235 1.94a2.8 2.8 0 0 0-.233 1.027L1 5.384v5.721l3.453-2.124q.219.416.55.835l-3.97 2.443A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741l-3.968-2.442q.33-.421.55-.836L15 11.105V5.383l-3.002 1.801a2.8 2.8 0 0 0-.233-1.026L15 4.217V4a1 1 0 0 0-1-1zm6 2.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nEnvelopeHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeHeart;\n"
  },
  {
    "path": "src/icons/envelope-open-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeOpenFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-open-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.941.435a2 2 0 0 0-1.882 0l-6 3.2A2 2 0 0 0 0 5.4v.314l6.709 3.932L8 8.928l1.291.718L16 5.714V5.4a2 2 0 0 0-1.059-1.765zM16 6.873l-5.693 3.337L16 13.372v-6.5Zm-.059 7.611L8 10.072.059 14.484A2 2 0 0 0 2 16h12a2 2 0 0 0 1.941-1.516M0 13.373l5.693-3.163L0 6.873z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeOpenFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeOpenFill;\n"
  },
  {
    "path": "src/icons/envelope-open-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeOpenHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-open-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.941.435a2 2 0 0 0-1.882 0l-6 3.2A2 2 0 0 0 0 5.4v.313l4.222 2.475q.035-.087.08-.17c.665-1.3 2.362-1.917 3.698-1.25 1.336-.667 3.033-.05 3.699 1.25a3 3 0 0 1 .08.17L16 5.713V5.4a2 2 0 0 0-1.059-1.765zM0 6.873l4 2.344c-.012.542.124 1.117.416 1.694l.004.006L0 13.372v-6.5Zm.059 7.611 4.9-2.723c.563.73 1.383 1.467 2.49 2.198l.551.365.551-.365c1.107-.73 1.927-1.467 2.49-2.198l4.9 2.723A2 2 0 0 1 14 16H2a2 2 0 0 1-1.941-1.516M16 13.372l-4.42-2.455.004-.006c.292-.577.428-1.152.415-1.694L16 6.873v6.5Z\" />\n        <path d=\"M8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeOpenHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeOpenHeartFill;\n"
  },
  {
    "path": "src/icons/envelope-open-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeOpenHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-open-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.817l3.235 1.94a2.8 2.8 0 0 0-.233 1.027L1 7.384v5.733l3.479-2.087q.224.414.558.83l-4.002 2.402A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738l-4.002-2.401q.334-.418.558-.831L15 13.117V7.383l-3.002 1.801a2.8 2.8 0 0 0-.233-1.026L15 6.217V5.4a1 1 0 0 0-.53-.882zM7.06.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765zM8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132\"\n        />\n      </svg>\n    );\n  },\n);\n\nEnvelopeOpenHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeOpenHeart;\n"
  },
  {
    "path": "src/icons/envelope-open.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeOpen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-open', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.817l5.75 3.45L8 8.917l1.25.75L15 6.217V5.4a1 1 0 0 0-.53-.882zM15 7.383l-4.778 2.867L15 13.117zm-.035 6.88L8 10.082l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738ZM1 13.116l4.778-2.867L1 7.383v5.734ZM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeOpen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeOpen;\n"
  },
  {
    "path": "src/icons/envelope-paper-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePaperFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-paper-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.5 9.5 3 7.5v-6A1.5 1.5 0 0 1 4.5 0h7A1.5 1.5 0 0 1 13 1.5v6l-3.5 2L8 8.75zM1.059 3.635 2 3.133v3.753L0 5.713V5.4a2 2 0 0 1 1.059-1.765M16 5.713l-2 1.173V3.133l.941.502A2 2 0 0 1 16 5.4zm0 1.16-5.693 3.337L16 13.372v-6.5Zm-8 3.199 7.941 4.412A2 2 0 0 1 14 16H2a2 2 0 0 1-1.941-1.516zm-8 3.3 5.693-3.162L0 6.873v6.5Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEnvelopePaperFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePaperFill;\n"
  },
  {
    "path": "src/icons/envelope-paper-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePaperHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-paper-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m3 7.5 3.5 2L8 8.75l1.5.75 3.5-2v-6A1.5 1.5 0 0 0 11.5 0h-7A1.5 1.5 0 0 0 3 1.5zM2 3.133l-.941.502A2 2 0 0 0 0 5.4v.313l2 1.173zm12 3.753 2-1.173V5.4a2 2 0 0 0-1.059-1.765L14 3.133zm-3.693 3.324L16 6.873v6.5zm5.634 4.274L8 10.072.059 14.484A2 2 0 0 0 2 16h12a2 2 0 0 0 1.941-1.516M5.693 10.21 0 13.372v-6.5zM8 1.982C9.664.309 13.825 3.236 8 7 2.175 3.236 6.336.31 8 1.982\"\n        />\n      </svg>\n    );\n  },\n);\n\nEnvelopePaperHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePaperHeartFill;\n"
  },
  {
    "path": "src/icons/envelope-paper-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePaperHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-paper-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v1.133l.941.502A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765L2 3.133zm0 2.267-.47.25A1 1 0 0 0 1 5.4v.817l1 .6zm1 3.15 3.75 2.25L8 8.917l1.25.75L13 7.417V2a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm11-.6 1-.6V5.4a1 1 0 0 0-.53-.882L14 4.267zM8 2.982C9.664 1.309 13.825 4.236 8 8 2.175 4.236 6.336 1.31 8 2.982m7 4.401-4.778 2.867L15 13.117zm-.035 6.88L8 10.082l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738ZM1 13.116l4.778-2.867L1 7.383v5.734Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nEnvelopePaperHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePaperHeart;\n"
  },
  {
    "path": "src/icons/envelope-paper.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePaper = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-paper', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0a2 2 0 0 0-2 2v1.133l-.941.502A2 2 0 0 0 0 5.4V14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5.4a2 2 0 0 0-1.059-1.765L14 3.133V2a2 2 0 0 0-2-2zm10 4.267.47.25A1 1 0 0 1 15 5.4v.817l-1 .6zm-1 3.15-3.75 2.25L8 8.917l-1.25.75L3 7.417V2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1zm-11-.6-1-.6V5.4a1 1 0 0 1 .53-.882L2 4.267zm13 .566v5.734l-4.778-2.867zm-.035 6.88A1 1 0 0 1 14 15H2a1 1 0 0 1-.965-.738L8 10.083zM1 13.116V7.383l4.778 2.867L1 13.117Z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopePaper.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePaper;\n"
  },
  {
    "path": "src/icons/envelope-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopePlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePlusFill;\n"
  },
  {
    "path": "src/icons/envelope-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopePlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopePlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopePlus;\n"
  },
  {
    "path": "src/icons/envelope-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M14.975 10.025a3.5 3.5 0 1 0-4.95 4.95 3.5 3.5 0 0 0 4.95-4.95m-4.243.707a2.5 2.5 0 0 1 3.147-.318l-3.465 3.465a2.5 2.5 0 0 1 .318-3.147m.39 3.854 3.464-3.465a2.501 2.501 0 0 1-3.465 3.465Z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeSlashFill;\n"
  },
  {
    "path": "src/icons/envelope-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M14.975 10.025a3.5 3.5 0 1 0-4.95 4.95 3.5 3.5 0 0 0 4.95-4.95m-4.243.707a2.5 2.5 0 0 1 3.147-.318l-3.465 3.465a2.5 2.5 0 0 1 .318-3.147m.39 3.854 3.464-3.465a2.501 2.501 0 0 1-3.465 3.465Z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeSlash;\n"
  },
  {
    "path": "src/icons/envelope-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.5 4.5 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586zM16 4.697v4.974A4.5 4.5 0 0 0 12.5 8a4.5 4.5 0 0 0-1.965.45l-.338-.207z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeXFill;\n"
  },
  {
    "path": "src/icons/envelope-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EnvelopeX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2zm3.708 6.208L1 11.105V5.383zM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nEnvelopeX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EnvelopeX;\n"
  },
  {
    "path": "src/icons/envelope.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Envelope = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-envelope', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z\" />\n      </svg>\n    );\n  },\n);\n\nEnvelope.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Envelope;\n"
  },
  {
    "path": "src/icons/eraser-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EraserFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eraser-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293z\" />\n      </svg>\n    );\n  },\n);\n\nEraserFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EraserFill;\n"
  },
  {
    "path": "src/icons/eraser.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Eraser = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eraser', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828zm2.121.707a1 1 0 0 0-1.414 0L4.16 7.547l5.293 5.293 4.633-4.633a1 1 0 0 0 0-1.414zM8.746 13.547 3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293z\" />\n      </svg>\n    );\n  },\n);\n\nEraser.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Eraser;\n"
  },
  {
    "path": "src/icons/escape.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Escape = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-escape', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.538 1.02a.5.5 0 1 0-.076.998 6 6 0 1 1-6.445 6.444.5.5 0 0 0-.997.076A7 7 0 1 0 8.538 1.02\" />\n        <path d=\"M7.096 7.828a.5.5 0 0 0 .707-.707L2.707 2.025h2.768a.5.5 0 1 0 0-1H1.5a.5.5 0 0 0-.5.5V5.5a.5.5 0 0 0 1 0V2.732z\" />\n      </svg>\n    );\n  },\n);\n\nEscape.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Escape;\n"
  },
  {
    "path": "src/icons/ethernet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ethernet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ethernet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 13.5v-7a.5.5 0 0 0-.5-.5H12V4.5a.5.5 0 0 0-.5-.5h-1v-.5A.5.5 0 0 0 10 3H6a.5.5 0 0 0-.5.5V4h-1a.5.5 0 0 0-.5.5V6H2.5a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5M3.75 11h.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25m2 0h.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25m1.75.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zM9.75 11h.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25m1.75.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25z\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM1 2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nEthernet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ethernet;\n"
  },
  {
    "path": "src/icons/ev-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EvFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ev-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.52 3.515A2.5 2.5 0 0 1 4.82 2h6.362c1 0 1.904.596 2.298 1.515l.792 1.848c.075.175.21.319.38.404.5.25.855.715.965 1.262l.335 1.679q.05.242.049.49v.413c0 .814-.39 1.543-1 1.997V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.338c-1.292.048-2.745.088-4 .088s-2.708-.04-4-.088V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.892c-.61-.454-1-1.183-1-1.997v-.413a2.5 2.5 0 0 1 .049-.49l.335-1.68c.11-.546.465-1.012.964-1.261a.8.8 0 0 0 .381-.404l.792-1.848Zm6.75.51a.186.186 0 0 0-.23.034L6.05 7.246a.188.188 0 0 0 .137.316h1.241l-.673 2.195a.19.19 0 0 0 .085.218c.075.043.17.03.23-.034l2.88-3.187a.188.188 0 0 0-.137-.316H8.572l.782-2.195a.19.19 0 0 0-.085-.218Z\" />\n      </svg>\n    );\n  },\n);\n\nEvFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EvFrontFill;\n"
  },
  {
    "path": "src/icons/ev-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EvFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ev-front', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.354 4.243a.19.19 0 0 0-.085-.218.186.186 0 0 0-.23.034L6.051 7.246a.188.188 0 0 0 .136.316h1.241l-.673 2.195a.19.19 0 0 0 .085.218c.075.043.17.03.23-.034l2.88-3.187a.188.188 0 0 0-.137-.316H8.572z\" />\n        <path d=\"M4.819 2A2.5 2.5 0 0 0 2.52 3.515l-.792 1.848a.8.8 0 0 1-.38.404c-.5.25-.855.715-.965 1.262L.05 8.708a2.5 2.5 0 0 0-.049.49v.413c0 .814.39 1.543 1 1.997V13.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.338c1.292.048 2.745.088 4 .088s2.708-.04 4-.088V13.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.892c.61-.454 1-1.183 1-1.997v-.413q0-.248-.049-.49l-.335-1.68a1.8 1.8 0 0 0-.964-1.261.8.8 0 0 1-.381-.404l-.792-1.848A2.5 2.5 0 0 0 11.181 2H4.82ZM3.44 3.91A1.5 1.5 0 0 1 4.82 3h6.362a1.5 1.5 0 0 1 1.379.91l.792 1.847a1.8 1.8 0 0 0 .853.904c.222.112.381.32.43.564l.336 1.679q.03.146.029.294v.413a1.48 1.48 0 0 1-1.408 1.484c-1.555.07-3.786.155-5.592.155s-4.037-.084-5.592-.155A1.48 1.48 0 0 1 1 9.611v-.413q0-.148.03-.294l.335-1.68a.8.8 0 0 1 .43-.563c.383-.19.685-.511.853-.904z\" />\n      </svg>\n    );\n  },\n);\n\nEvFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EvFront;\n"
  },
  {
    "path": "src/icons/ev-station-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EvStationFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ev-station-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v8a2 2 0 0 1 2 2v.5a.5.5 0 0 0 1 0V9c0-.258-.104-.377-.357-.635l-.007-.008C13.379 8.096 13 7.71 13 7V4a.5.5 0 0 1 .146-.354l.5-.5a.5.5 0 0 1 .708 0l.5.5A.5.5 0 0 1 15 4v8.5a1.5 1.5 0 1 1-3 0V12a1 1 0 0 0-1-1v4h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1zm2 .5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5m2.631 9.96H4.14v-.893h1.403v-.505H4.14v-.855h1.49v-.54H3.485V13h2.146zm1.316.54h.794l1.106-3.333h-.733l-.74 2.615h-.031l-.747-2.615h-.764z\" />\n      </svg>\n    );\n  },\n);\n\nEvStationFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EvStationFill;\n"
  },
  {
    "path": "src/icons/ev-station.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EvStation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ev-station', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 2a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5zm2.131 10.46H4.14v-.893h1.403v-.505H4.14v-.855h1.49v-.54H3.485V13h2.146zm1.316.54h.794l1.106-3.333h-.733l-.74 2.615h-.031l-.747-2.615h-.764z\" />\n        <path d=\"M3 0a2 2 0 0 0-2 2v13H.5a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1H11v-4a1 1 0 0 1 1 1v.5a1.5 1.5 0 0 0 3 0V4a.5.5 0 0 0-.146-.354l-.5-.5a.5.5 0 0 0-.707 0l-.5.5A.5.5 0 0 0 13 4v3c0 .71.38 1.096.636 1.357l.007.008c.253.258.357.377.357.635v3.5a.5.5 0 1 1-1 0V12a2 2 0 0 0-2-2V2a2 2 0 0 0-2-2zm7 2v13H2V2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1\" />\n      </svg>\n    );\n  },\n);\n\nEvStation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EvStation;\n"
  },
  {
    "path": "src/icons/exclamation-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4m.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nExclamationCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationCircleFill;\n"
  },
  {
    "path": "src/icons/exclamation-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamationCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationCircle;\n"
  },
  {
    "path": "src/icons/exclamation-diamond-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationDiamondFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-diamond-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM8 4c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995A.905.905 0 0 1 8 4m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nExclamationDiamondFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationDiamondFill;\n"
  },
  {
    "path": "src/icons/exclamation-diamond.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationDiamond = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-diamond', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134z\" />\n        <path d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamationDiamond.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationDiamond;\n"
  },
  {
    "path": "src/icons/exclamation-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-lg', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.005 3.1a1 1 0 1 1 1.99 0l-.388 6.35a.61.61 0 0 1-1.214 0zM7 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0\" />\n      </svg>\n    );\n  },\n);\n\nExclamationLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationLg;\n"
  },
  {
    "path": "src/icons/exclamation-octagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationOctagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-octagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.46.146A.5.5 0 0 0 11.107 0H4.893a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353zM8 4c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995A.905.905 0 0 1 8 4m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nExclamationOctagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationOctagonFill;\n"
  },
  {
    "path": "src/icons/exclamation-octagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationOctagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-octagon', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM5.1 1 1 5.1v5.8L5.1 15h5.8l4.1-4.1V5.1L10.9 1z\" />\n        <path d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamationOctagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationOctagon;\n"
  },
  {
    "path": "src/icons/exclamation-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6 4c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995A.905.905 0 0 1 8 4m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nExclamationSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationSquareFill;\n"
  },
  {
    "path": "src/icons/exclamation-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamationSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationSquare;\n"
  },
  {
    "path": "src/icons/exclamation-triangle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationTriangleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-triangle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nExclamationTriangleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationTriangleFill;\n"
  },
  {
    "path": "src/icons/exclamation-triangle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExclamationTriangle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation-triangle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.938 2.016A.13.13 0 0 1 8.002 2a.13.13 0 0 1 .063.016.15.15 0 0 1 .054.057l6.857 11.667c.036.06.035.124.002.183a.2.2 0 0 1-.054.06.1.1 0 0 1-.066.017H1.146a.1.1 0 0 1-.066-.017.2.2 0 0 1-.054-.06.18.18 0 0 1 .002-.183L7.884 2.073a.15.15 0 0 1 .054-.057m1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767z\" />\n        <path d=\"M7.002 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 5.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamationTriangle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExclamationTriangle;\n"
  },
  {
    "path": "src/icons/exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Exclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.553.553 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Exclamation;\n"
  },
  {
    "path": "src/icons/exclude.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Exclude = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exclude', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2zm12 2H5a1 1 0 0 0-1 1v7h7a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nExclude.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Exclude;\n"
  },
  {
    "path": "src/icons/explicit-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ExplicitFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-explicit-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 0A2.5 2.5 0 0 0 0 2.5v11A2.5 2.5 0 0 0 2.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 13.5 0zm4.326 10.88H10.5V12h-5V4.002h5v1.12H6.826V7.4h3.457v1.073H6.826z\" />\n      </svg>\n    );\n  },\n);\n\nExplicitFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ExplicitFill;\n"
  },
  {
    "path": "src/icons/explicit.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Explicit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-explicit', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.826 10.88H10.5V12h-5V4.002h5v1.12H6.826V7.4h3.457v1.073H6.826z\" />\n        <path d=\"M2.5 0A2.5 2.5 0 0 0 0 2.5v11A2.5 2.5 0 0 0 2.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 13.5 0zM1 2.5A1.5 1.5 0 0 1 2.5 1h11A1.5 1.5 0 0 1 15 2.5v11a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 13.5z\" />\n      </svg>\n    );\n  },\n);\n\nExplicit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Explicit;\n"
  },
  {
    "path": "src/icons/exposure.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Exposure = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-exposure', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 4a.5.5 0 0 0-1 0v2h-2a.5.5 0 0 0 0 1h2v2a.5.5 0 0 0 1 0V7h2a.5.5 0 0 0 0-1h-2zm-3 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8\" />\n      </svg>\n    );\n  },\n);\n\nExposure.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Exposure;\n"
  },
  {
    "path": "src/icons/eye-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EyeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eye-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0\" />\n        <path d=\"M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8m8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7\" />\n      </svg>\n    );\n  },\n);\n\nEyeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EyeFill;\n"
  },
  {
    "path": "src/icons/eye-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EyeSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eye-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m10.79 12.912-1.614-1.615a3.5 3.5 0 0 1-4.474-4.474l-2.06-2.06C.938 6.278 0 8 0 8s3 5.5 8 5.5a7 7 0 0 0 2.79-.588M5.21 3.088A7 7 0 0 1 8 2.5c5 0 8 5.5 8 5.5s-.939 1.721-2.641 3.238l-2.062-2.062a3.5 3.5 0 0 0-4.474-4.474z\" />\n        <path d=\"M5.525 7.646a2.5 2.5 0 0 0 2.829 2.829zm4.95.708-2.829-2.83a2.5 2.5 0 0 1 2.829 2.829zm3.171 6-12-12 .708-.708 12 12z\" />\n      </svg>\n    );\n  },\n);\n\nEyeSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EyeSlashFill;\n"
  },
  {
    "path": "src/icons/eye-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst EyeSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eye-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.359 11.238C15.06 9.72 16 8 16 8s-3-5.5-8-5.5a7 7 0 0 0-2.79.588l.77.771A6 6 0 0 1 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755q-.247.248-.517.486z\" />\n        <path d=\"M11.297 9.176a3.5 3.5 0 0 0-4.474-4.474l.823.823a2.5 2.5 0 0 1 2.829 2.829zm-2.943 1.299.822.822a3.5 3.5 0 0 1-4.474-4.474l.823.823a2.5 2.5 0 0 0 2.829 2.829\" />\n        <path d=\"M3.35 5.47q-.27.24-.518.487A13 13 0 0 0 1.172 8l.195.288c.335.48.83 1.12 1.465 1.755C4.121 11.332 5.881 12.5 8 12.5c.716 0 1.39-.133 2.02-.36l.77.772A7 7 0 0 1 8 13.5C3 13.5 0 8 0 8s.939-1.721 2.641-3.238l.708.709zm10.296 8.884-12-12 .708-.708 12 12z\" />\n      </svg>\n    );\n  },\n);\n\nEyeSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default EyeSlash;\n"
  },
  {
    "path": "src/icons/eye.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Eye = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eye', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8M1.173 8a13 13 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5s3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5s-3.879-1.168-5.168-2.457A13 13 0 0 1 1.172 8z\" />\n        <path d=\"M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0\" />\n      </svg>\n    );\n  },\n);\n\nEye.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Eye;\n"
  },
  {
    "path": "src/icons/eyedropper.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Eyedropper = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eyedropper', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.354.646a1.207 1.207 0 0 0-1.708 0L8.5 3.793l-.646-.647a.5.5 0 1 0-.708.708L8.293 5l-7.147 7.146A.5.5 0 0 0 1 12.5v1.793l-.854.853a.5.5 0 1 0 .708.707L1.707 15H3.5a.5.5 0 0 0 .354-.146L11 7.707l1.146 1.147a.5.5 0 0 0 .708-.708l-.647-.646 3.147-3.146a1.207 1.207 0 0 0 0-1.708zM2 12.707l7-7L10.293 7l-7 7H2z\" />\n      </svg>\n    );\n  },\n);\n\nEyedropper.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Eyedropper;\n"
  },
  {
    "path": "src/icons/eyeglasses.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Eyeglasses = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-eyeglasses', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 6a2 2 0 1 1 0 4 2 2 0 0 1 0-4m2.625.547a3 3 0 0 0-5.584.953H.5a.5.5 0 0 0 0 1h.541A3 3 0 0 0 7 8a1 1 0 0 1 2 0 3 3 0 0 0 5.959.5h.541a.5.5 0 0 0 0-1h-.541a3 3 0 0 0-5.584-.953A2 2 0 0 0 8 6c-.532 0-1.016.208-1.375.547M14 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nEyeglasses.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Eyeglasses;\n"
  },
  {
    "path": "src/icons/facebook.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Facebook = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-facebook', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951\" />\n      </svg>\n    );\n  },\n);\n\nFacebook.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Facebook;\n"
  },
  {
    "path": "src/icons/fan.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Fan = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fan', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 3c0 1.313-.304 2.508-.8 3.4a2 2 0 0 0-1.484-.38c-.28-.982-.91-2.04-1.838-2.969a8 8 0 0 0-.491-.454A6 6 0 0 1 8 2c.691 0 1.355.117 1.973.332Q10 2.661 10 3m0 5q0 .11-.012.217c1.018-.019 2.2-.353 3.331-1.006a8 8 0 0 0 .57-.361 6 6 0 0 0-2.53-3.823 9 9 0 0 1-.145.64c-.34 1.269-.944 2.346-1.656 3.079.277.343.442.78.442 1.254m-.137.728a2 2 0 0 1-1.07 1.109c.525.87 1.405 1.725 2.535 2.377q.3.174.605.317a6 6 0 0 0 2.053-4.111q-.311.11-.641.199c-1.264.339-2.493.356-3.482.11ZM8 10c-.45 0-.866-.149-1.2-.4-.494.89-.796 2.082-.796 3.391q0 .346.027.678A6 6 0 0 0 8 14c.94 0 1.83-.216 2.623-.602a8 8 0 0 1-.497-.458c-.925-.926-1.555-1.981-1.836-2.96Q8.149 10 8 10M6 8q0-.12.014-.239c-1.02.017-2.205.351-3.34 1.007a8 8 0 0 0-.568.359 6 6 0 0 0 2.525 3.839 8 8 0 0 1 .148-.653c.34-1.267.94-2.342 1.65-3.075A2 2 0 0 1 6 8m-3.347-.632c1.267-.34 2.498-.355 3.488-.107.196-.494.583-.89 1.07-1.1-.524-.874-1.406-1.733-2.541-2.388a8 8 0 0 0-.594-.312 6 6 0 0 0-2.06 4.106q.309-.11.637-.199M8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n      </svg>\n    );\n  },\n);\n\nFan.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Fan;\n"
  },
  {
    "path": "src/icons/fast-forward-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForwardBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2m4.271 1.055a.5.5 0 0 1 .52.038L8 7.386V5.5a.5.5 0 0 1 .79-.407l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 8 10.5V8.614l-3.21 2.293A.5.5 0 0 1 4 10.5v-5a.5.5 0 0 1 .271-.445\" />\n      </svg>\n    );\n  },\n);\n\nFastForwardBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForwardBtnFill;\n"
  },
  {
    "path": "src/icons/fast-forward-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForwardBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward-btn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.79 5.093A.5.5 0 0 0 8 5.5v1.886L4.79 5.093A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L8 8.614V10.5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nFastForwardBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForwardBtn;\n"
  },
  {
    "path": "src/icons/fast-forward-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForwardCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M4.79 5.093 8 7.386V5.5a.5.5 0 0 1 .79-.407l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 8 10.5V8.614l-3.21 2.293A.5.5 0 0 1 4 10.5v-5a.5.5 0 0 1 .79-.407\" />\n      </svg>\n    );\n  },\n);\n\nFastForwardCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForwardCircleFill;\n"
  },
  {
    "path": "src/icons/fast-forward-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForwardCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.271 5.055a.5.5 0 0 1 .52.038L8 7.386V5.5a.5.5 0 0 1 .79-.407l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 8 10.5V8.614l-3.21 2.293A.5.5 0 0 1 4 10.5v-5a.5.5 0 0 1 .271-.445\" />\n      </svg>\n    );\n  },\n);\n\nFastForwardCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForwardCircle;\n"
  },
  {
    "path": "src/icons/fast-forward-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.596 7.304a.802.802 0 0 1 0 1.392l-6.363 3.692C.713 12.69 0 12.345 0 11.692V4.308c0-.653.713-.998 1.233-.696z\" />\n        <path d=\"M15.596 7.304a.802.802 0 0 1 0 1.392l-6.363 3.692C8.713 12.69 8 12.345 8 11.692V4.308c0-.653.713-.998 1.233-.696z\" />\n      </svg>\n    );\n  },\n);\n\nFastForwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForwardFill;\n"
  },
  {
    "path": "src/icons/fast-forward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FastForward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fast-forward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.804 8 1 4.633v6.734zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C.713 12.69 0 12.345 0 11.692V4.308c0-.653.713-.998 1.233-.696z\" />\n        <path d=\"M14.804 8 9 4.633v6.734zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C8.713 12.69 8 12.345 8 11.692V4.308c0-.653.713-.998 1.233-.696z\" />\n      </svg>\n    );\n  },\n);\n\nFastForward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FastForward;\n"
  },
  {
    "path": "src/icons/feather.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Feather = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-feather', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.807.531c-.174-.177-.41-.289-.64-.363a3.8 3.8 0 0 0-.833-.15c-.62-.049-1.394 0-2.252.175C10.365.545 8.264 1.415 6.315 3.1S3.147 6.824 2.557 8.523c-.294.847-.44 1.634-.429 2.268.005.316.05.62.154.88q.025.061.056.122A68 68 0 0 0 .08 15.198a.53.53 0 0 0 .157.72.504.504 0 0 0 .705-.16 68 68 0 0 1 2.158-3.26c.285.141.616.195.958.182.513-.02 1.098-.188 1.723-.49 1.25-.605 2.744-1.787 4.303-3.642l1.518-1.55a.53.53 0 0 0 0-.739l-.729-.744 1.311.209a.5.5 0 0 0 .443-.15l.663-.684c.663-.68 1.292-1.325 1.763-1.892.314-.378.585-.752.754-1.107.163-.345.278-.773.112-1.188a.5.5 0 0 0-.112-.172M3.733 11.62C5.385 9.374 7.24 7.215 9.309 5.394l1.21 1.234-1.171 1.196-.027.03c-1.5 1.789-2.891 2.867-3.977 3.393-.544.263-.99.378-1.324.39a1.3 1.3 0 0 1-.287-.018Zm6.769-7.22c1.31-1.028 2.7-1.914 4.172-2.6a7 7 0 0 1-.4.523c-.442.533-1.028 1.134-1.681 1.804l-.51.524zm3.346-3.357C9.594 3.147 6.045 6.8 3.149 10.678c.007-.464.121-1.086.37-1.806.533-1.535 1.65-3.415 3.455-4.976 1.807-1.561 3.746-2.36 5.31-2.68a8 8 0 0 1 1.564-.173\" />\n      </svg>\n    );\n  },\n);\n\nFeather.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Feather;\n"
  },
  {
    "path": "src/icons/feather2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Feather2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-feather2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 1.063v9.556L6 8.819V3a2 2 0 0 1 1.5-1.937M8 0a3 3 0 0 0-3 3v6a.5.5 0 0 0 .116.32L7.5 12.181V15.5a.5.5 0 0 0 1 0v-3.319l2.384-2.86A.5.5 0 0 0 11 9V3a3 3 0 0 0-3-3m.5 1.063A2 2 0 0 1 10 3v.293l-1.5 1.5zM10 4.707V8.82l-1.5 1.8V6.207z\" />\n      </svg>\n    );\n  },\n);\n\nFeather2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Feather2;\n"
  },
  {
    "path": "src/icons/file-arrow-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileArrowDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-arrow-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8 5a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 9.293V5.5A.5.5 0 0 1 8 5\" />\n      </svg>\n    );\n  },\n);\n\nFileArrowDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileArrowDownFill;\n"
  },
  {
    "path": "src/icons/file-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 9.293V5.5A.5.5 0 0 1 8 5\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileArrowDown;\n"
  },
  {
    "path": "src/icons/file-arrow-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileArrowUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-arrow-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M7.5 6.707 6.354 7.854a.5.5 0 1 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 6.707V10.5a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nFileArrowUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileArrowUpFill;\n"
  },
  {
    "path": "src/icons/file-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a.5.5 0 0 0 .5-.5V6.707l1.146 1.147a.5.5 0 0 0 .708-.708l-2-2a.5.5 0 0 0-.708 0l-2 2a.5.5 0 1 0 .708.708L7.5 6.707V10.5a.5.5 0 0 0 .5.5\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileArrowUp;\n"
  },
  {
    "path": "src/icons/file-bar-graph-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBarGraphFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-bar-graph-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 11.5v-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5m-2.5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5zm-3 0a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileBarGraphFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBarGraphFill;\n"
  },
  {
    "path": "src/icons/file-bar-graph.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBarGraph = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-bar-graph', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 12a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5zm3 0a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5zm3 0a.5.5 0 0 1-.5-.5v-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileBarGraph.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBarGraph;\n"
  },
  {
    "path": "src/icons/file-binary-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBinaryFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-binary-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.526 9.273c-.542 0-.832.563-.832 1.612q0 .133.006.252l1.56-1.143c-.126-.474-.375-.72-.733-.72zm-.732 2.508c.126.472.372.718.732.718.54 0 .83-.563.83-1.614q0-.129-.006-.25z\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M7.05 10.885c0 1.415-.548 2.206-1.524 2.206C4.548 13.09 4 12.3 4 10.885c0-1.412.548-2.203 1.526-2.203.976 0 1.524.79 1.524 2.203m3.805 1.52V13h-3v-.595h1.181V9.5h-.05l-1.136.747v-.688l1.19-.786h.69v3.633z\" />\n      </svg>\n    );\n  },\n);\n\nFileBinaryFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBinaryFill;\n"
  },
  {
    "path": "src/icons/file-binary.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBinary = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-binary', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.526 13.09c.976 0 1.524-.79 1.524-2.205 0-1.412-.548-2.203-1.524-2.203-.978 0-1.526.79-1.526 2.203 0 1.415.548 2.206 1.526 2.206zm-.832-2.205c0-1.05.29-1.612.832-1.612.358 0 .607.247.733.721L4.7 11.137a7 7 0 0 1-.006-.252m.832 1.614c-.36 0-.606-.246-.732-.718l1.556-1.145q.005.12.005.249c0 1.052-.29 1.614-.829 1.614m5.329.501v-.595H9.73V8.772h-.69l-1.19.786v.688L8.986 9.5h.05v2.906h-1.18V13h3z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileBinary.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBinary;\n"
  },
  {
    "path": "src/icons/file-break-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBreakFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-break-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0h8a2 2 0 0 1 2 2v7H2V2a2 2 0 0 1 2-2M2 12h12v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zM.5 10a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nFileBreakFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBreakFill;\n"
  },
  {
    "path": "src/icons/file-break.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileBreak = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-break', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 10.5a.5.5 0 0 1 .5-.5h15a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5M12 0H4a2 2 0 0 0-2 2v7h1V2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v7h1V2a2 2 0 0 0-2-2m2 12h-1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2H2v2a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nFileBreak.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileBreak;\n"
  },
  {
    "path": "src/icons/file-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-1.146 6.854-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nFileCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileCheckFill;\n"
  },
  {
    "path": "src/icons/file-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.854 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708 0\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileCheck;\n"
  },
  {
    "path": "src/icons/file-code-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileCodeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-code-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M6.646 5.646a.5.5 0 1 1 .708.708L5.707 8l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zm2.708 0 2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 8 8.646 6.354a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nFileCodeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileCodeFill;\n"
  },
  {
    "path": "src/icons/file-code.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileCode = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-code', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.646 5.646a.5.5 0 1 1 .708.708L5.707 8l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zm2.708 0a.5.5 0 1 0-.708.708L10.293 8 8.646 9.646a.5.5 0 0 0 .708.708l2-2a.5.5 0 0 0 0-.708z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileCode.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileCode;\n"
  },
  {
    "path": "src/icons/file-diff-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileDiffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-diff-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8.5 4.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5a.5.5 0 0 1 1 0M6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileDiffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileDiffFill;\n"
  },
  {
    "path": "src/icons/file-diff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileDiff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-diff', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4a.5.5 0 0 1 .5.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5A.5.5 0 0 1 8 4m-2.5 6.5A.5.5 0 0 1 6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileDiff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileDiff;\n"
  },
  {
    "path": "src/icons/file-earmark-arrow-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkArrowDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-arrow-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m-1 4v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 11.293V7.5a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkArrowDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkArrowDownFill;\n"
  },
  {
    "path": "src/icons/file-earmark-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 6.5a.5.5 0 0 0-1 0v3.793L6.354 9.146a.5.5 0 1 0-.708.708l2 2a.5.5 0 0 0 .708 0l2-2a.5.5 0 0 0-.708-.708L8.5 10.293z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkArrowDown;\n"
  },
  {
    "path": "src/icons/file-earmark-arrow-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkArrowUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-arrow-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M6.354 9.854a.5.5 0 0 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 8.707V12.5a.5.5 0 0 1-1 0V8.707z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkArrowUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkArrowUpFill;\n"
  },
  {
    "path": "src/icons/file-earmark-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 11.5a.5.5 0 0 1-1 0V7.707L6.354 8.854a.5.5 0 1 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 7.707z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkArrowUp;\n"
  },
  {
    "path": "src/icons/file-earmark-bar-graph-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBarGraphFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-bar-graph-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m.5 10v-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5m-2.5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5zm-3 0a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBarGraphFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBarGraphFill;\n"
  },
  {
    "path": "src/icons/file-earmark-bar-graph.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBarGraph = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-bar-graph', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 13.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5zm-2.5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5zm-3 0a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBarGraph.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBarGraph;\n"
  },
  {
    "path": "src/icons/file-earmark-binary-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBinaryFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-binary-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.526 10.273c-.542 0-.832.563-.832 1.612q0 .133.006.252l1.559-1.143c-.126-.474-.375-.72-.733-.72zm-.732 2.508c.126.472.372.718.732.718.54 0 .83-.563.83-1.614q0-.129-.006-.25z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m-2.45 8.385c0 1.415-.548 2.206-1.524 2.206C4.548 14.09 4 13.3 4 11.885c0-1.412.548-2.203 1.526-2.203.976 0 1.524.79 1.524 2.203m3.805 1.52V14h-3v-.595h1.181V10.5h-.05l-1.136.747v-.688l1.19-.786h.69v3.633z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBinaryFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBinaryFill;\n"
  },
  {
    "path": "src/icons/file-earmark-binary.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBinary = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-binary', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.05 11.885c0 1.415-.548 2.206-1.524 2.206C4.548 14.09 4 13.3 4 11.885c0-1.412.548-2.203 1.526-2.203.976 0 1.524.79 1.524 2.203m-1.524-1.612c-.542 0-.832.563-.832 1.612q0 .133.006.252l1.559-1.143c-.126-.474-.375-.72-.733-.72zm-.732 2.508c.126.472.372.718.732.718.54 0 .83-.563.83-1.614q0-.129-.006-.25zm6.061.624V14h-3v-.595h1.181V10.5h-.05l-1.136.747v-.688l1.19-.786h.69v3.633z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBinary.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBinary;\n"
  },
  {
    "path": "src/icons/file-earmark-break-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBreakFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-break-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707V9H2V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2zM2 12h12v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zM.5 10a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBreakFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBreakFill;\n"
  },
  {
    "path": "src/icons/file-earmark-break.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkBreak = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-break', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.5V9h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v7H2V2a2 2 0 0 1 2-2h5.5zM13 12h1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2h1v2a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1zM.5 10a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkBreak.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkBreak;\n"
  },
  {
    "path": "src/icons/file-earmark-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m1.354 4.354-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkCheckFill;\n"
  },
  {
    "path": "src/icons/file-earmark-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkCheck;\n"
  },
  {
    "path": "src/icons/file-earmark-code-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkCodeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-code-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M6.646 7.646a.5.5 0 1 1 .708.708L5.707 10l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zm2.708 0 2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 10 8.646 8.354a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkCodeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkCodeFill;\n"
  },
  {
    "path": "src/icons/file-earmark-code.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkCode = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-code', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n        <path d=\"M8.646 6.646a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 9 8.646 7.354a.5.5 0 0 1 0-.708m-1.292 0a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0 0 .708l2 2a.5.5 0 0 0 .708-.708L5.707 9l1.647-1.646a.5.5 0 0 0 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkCode.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkCode;\n"
  },
  {
    "path": "src/icons/file-earmark-diff-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkDiffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-diff-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M8 6a.5.5 0 0 1 .5.5V8H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V9H6a.5.5 0 0 1 0-1h1.5V6.5A.5.5 0 0 1 8 6m-2.5 6.5A.5.5 0 0 1 6 12h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkDiffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkDiffFill;\n"
  },
  {
    "path": "src/icons/file-earmark-diff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkDiff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-diff', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a.5.5 0 0 1 .5.5V7H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V8H6a.5.5 0 0 1 0-1h1.5V5.5A.5.5 0 0 1 8 5m-2.5 6.5A.5.5 0 0 1 6 11h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkDiff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkDiff;\n"
  },
  {
    "path": "src/icons/file-earmark-easel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkEaselFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-easel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M8.5 6h2A1.5 1.5 0 0 1 12 7.5v2a1.5 1.5 0 0 1-1.5 1.5h-.473l.447 1.342a.5.5 0 0 1-.948.316L8.973 11H8.5v1a.5.5 0 0 1-1 0v-1h-.473l-.553 1.658a.5.5 0 1 1-.948-.316L5.973 11H5.5A1.5 1.5 0 0 1 4 9.5v-2A1.5 1.5 0 0 1 5.5 6h2a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkEaselFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkEaselFill;\n"
  },
  {
    "path": "src/icons/file-earmark-easel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkEasel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-easel', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 6a.5.5 0 1 0-1 0h-2A1.5 1.5 0 0 0 4 7.5v2A1.5 1.5 0 0 0 5.5 11h.473l-.447 1.342a.5.5 0 1 0 .948.316L7.027 11H7.5v1a.5.5 0 0 0 1 0v-1h.473l.553 1.658a.5.5 0 1 0 .948-.316L10.027 11h.473A1.5 1.5 0 0 0 12 9.5v-2A1.5 1.5 0 0 0 10.5 6zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkEasel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkEasel;\n"
  },
  {
    "path": "src/icons/file-earmark-excel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkExcelFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-excel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M5.884 6.68 8 9.219l2.116-2.54a.5.5 0 1 1 .768.641L8.651 10l2.233 2.68a.5.5 0 0 1-.768.64L8 10.781l-2.116 2.54a.5.5 0 0 1-.768-.641L7.349 10 5.116 7.32a.5.5 0 1 1 .768-.64\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkExcelFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkExcelFill;\n"
  },
  {
    "path": "src/icons/file-earmark-excel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkExcel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-excel', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.884 6.68a.5.5 0 1 0-.768.64L7.349 10l-2.233 2.68a.5.5 0 0 0 .768.64L8 10.781l2.116 2.54a.5.5 0 0 0 .768-.641L8.651 10l2.233-2.68a.5.5 0 0 0-.768-.64L8 9.219l-2.116-2.54z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkExcel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkExcel;\n"
  },
  {
    "path": "src/icons/file-earmark-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkFill;\n"
  },
  {
    "path": "src/icons/file-earmark-font-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkFontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-font-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M5.057 6h5.886L11 8h-.5c-.18-1.096-.356-1.192-1.694-1.235l-.298-.01v5.09c0 .47.1.582.903.655v.5H6.59v-.5c.799-.073.898-.184.898-.654V6.755l-.293.01C5.856 6.808 5.68 6.905 5.5 8H5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkFontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkFontFill;\n"
  },
  {
    "path": "src/icons/file-earmark-font.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkFont = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-font', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.943 6H5.057L5 8h.5c.18-1.096.356-1.192 1.694-1.235l.293-.01v5.09c0 .47-.1.582-.898.655v.5H9.41v-.5c-.803-.073-.903-.184-.903-.654V6.755l.298.01c1.338.043 1.514.14 1.694 1.235h.5l-.057-2z\" />\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkFont.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkFont;\n"
  },
  {
    "path": "src/icons/file-earmark-image-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkImageFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-image-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707v5.586l-2.73-2.73a1 1 0 0 0-1.52.127l-1.889 2.644-1.769-1.062a1 1 0 0 0-1.222.15L2 12.292V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2zm-1.498 4a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n        <path d=\"M10.564 8.27 14 11.708V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-.293l3.578-3.577 2.56 1.536 2.426-3.395z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkImageFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkImageFill;\n"
  },
  {
    "path": "src/icons/file-earmark-image.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkImage = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-image', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.502 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"M14 14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5L14 4.5zM4 1a1 1 0 0 0-1 1v10l2.224-2.224a.5.5 0 0 1 .61-.075L8 11l2.157-3.02a.5.5 0 0 1 .76-.063L13 10V4.5h-2A1.5 1.5 0 0 1 9.5 3V1z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkImage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkImage;\n"
  },
  {
    "path": "src/icons/file-earmark-lock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkLockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-lock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 7a1 1 0 0 1 2 0v1H7zM6 9.3c0-.042.02-.107.105-.175A.64.64 0 0 1 6.5 9h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.64.64 0 0 1 9.5 12h-3a.64.64 0 0 1-.395-.125C6.02 11.807 6 11.742 6 11.7z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M10 7v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V9.3c0-.627.46-1.058 1-1.224V7a2 2 0 1 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkLockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkLockFill;\n"
  },
  {
    "path": "src/icons/file-earmark-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 7v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V9.3c0-.627.46-1.058 1-1.224V7a2 2 0 1 1 4 0M7 7v1h2V7a1 1 0 0 0-2 0M6 9.3v2.4c0 .042.02.107.105.175A.64.64 0 0 0 6.5 12h3a.64.64 0 0 0 .395-.125c.085-.068.105-.133.105-.175V9.3c0-.042-.02-.107-.105-.175A.64.64 0 0 0 9.5 9h-3a.64.64 0 0 0-.395.125C6.02 9.193 6 9.258 6 9.3\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkLock;\n"
  },
  {
    "path": "src/icons/file-earmark-lock2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkLock2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-lock2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 7a1 1 0 0 1 2 0v1H7z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M10 7v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V9.3c0-.627.46-1.058 1-1.224V7a2 2 0 1 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkLock2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkLock2Fill;\n"
  },
  {
    "path": "src/icons/file-earmark-lock2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkLock2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-lock2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 7v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V9.3c0-.627.46-1.058 1-1.224V7a2 2 0 1 1 4 0M7 7v1h2V7a1 1 0 0 0-2 0\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkLock2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkLock2;\n"
  },
  {
    "path": "src/icons/file-earmark-medical-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMedicalFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-medical-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m-3 2v.634l.549-.317a.5.5 0 1 1 .5.866L7 7l.549.317a.5.5 0 1 1-.5.866L6.5 7.866V8.5a.5.5 0 0 1-1 0v-.634l-.549.317a.5.5 0 1 1-.5-.866L5 7l-.549-.317a.5.5 0 0 1 .5-.866l.549.317V5.5a.5.5 0 1 1 1 0m-2 4.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1m0 2h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMedicalFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMedicalFill;\n"
  },
  {
    "path": "src/icons/file-earmark-medical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMedical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-medical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 5.5a.5.5 0 0 0-1 0v.634l-.549-.317a.5.5 0 1 0-.5.866L6 7l-.549.317a.5.5 0 1 0 .5.866l.549-.317V8.5a.5.5 0 1 0 1 0v-.634l.549.317a.5.5 0 1 0 .5-.866L8 7l.549-.317a.5.5 0 1 0-.5-.866l-.549.317zm-2 4.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMedical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMedical;\n"
  },
  {
    "path": "src/icons/file-earmark-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M6 8.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMinusFill;\n"
  },
  {
    "path": "src/icons/file-earmark-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 9a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMinus;\n"
  },
  {
    "path": "src/icons/file-earmark-music-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMusicFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-music-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M11 6.64v1.75l-2 .5v3.61c0 .495-.301.883-.662 1.123C7.974 13.866 7.499 14 7 14s-.974-.134-1.338-.377C5.302 13.383 5 12.995 5 12.5s.301-.883.662-1.123C6.026 11.134 6.501 11 7 11c.356 0 .7.068 1 .196V6.89a1 1 0 0 1 .757-.97l1-.25A1 1 0 0 1 11 6.64\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMusicFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMusicFill;\n"
  },
  {
    "path": "src/icons/file-earmark-music.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkMusic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-music', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 6.64a1 1 0 0 0-1.243-.97l-1 .25A1 1 0 0 0 8 6.89v4.306A2.6 2.6 0 0 0 7 11c-.5 0-.974.134-1.338.377-.36.24-.662.628-.662 1.123s.301.883.662 1.123c.364.243.839.377 1.338.377s.974-.134 1.338-.377c.36-.24.662-.628.662-1.123V8.89l2-.5z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkMusic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkMusic;\n"
  },
  {
    "path": "src/icons/file-earmark-pdf-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPdfFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-pdf-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.523 12.424q.21-.124.459-.238a8 8 0 0 1-.45.606c-.28.337-.498.516-.635.572l-.035.012a.3.3 0 0 1-.026-.044c-.056-.11-.054-.216.04-.36.106-.165.319-.354.647-.548m2.455-1.647q-.178.037-.356.078a21 21 0 0 0 .5-1.05 12 12 0 0 0 .51.858q-.326.048-.654.114m2.525.939a4 4 0 0 1-.435-.41q.344.007.612.054c.317.057.466.147.518.209a.1.1 0 0 1 .026.064.44.44 0 0 1-.06.2.3.3 0 0 1-.094.124.1.1 0 0 1-.069.015c-.09-.003-.258-.066-.498-.256M8.278 6.97c-.04.244-.108.524-.2.829a5 5 0 0 1-.089-.346c-.076-.353-.087-.63-.046-.822.038-.177.11-.248.196-.283a.5.5 0 0 1 .145-.04c.013.03.028.092.032.198q.008.183-.038.465z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2zM4.165 13.668c.09.18.23.343.438.419.207.075.412.04.58-.03.318-.13.635-.436.926-.786.333-.401.683-.927 1.021-1.51a11.7 11.7 0 0 1 1.997-.406c.3.383.61.713.91.95.28.22.603.403.934.417a.86.86 0 0 0 .51-.138c.155-.101.27-.247.354-.416.09-.181.145-.37.138-.563a.84.84 0 0 0-.2-.518c-.226-.27-.596-.4-.96-.465a5.8 5.8 0 0 0-1.335-.05 11 11 0 0 1-.98-1.686c.25-.66.437-1.284.52-1.794.036-.218.055-.426.048-.614a1.24 1.24 0 0 0-.127-.538.7.7 0 0 0-.477-.365c-.202-.043-.41 0-.601.077-.377.15-.576.47-.651.823-.073.34-.04.736.046 1.136.088.406.238.848.43 1.295a20 20 0 0 1-1.062 2.227 7.7 7.7 0 0 0-1.482.645c-.37.22-.699.48-.897.787-.21.326-.275.714-.08 1.103\"\n        />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPdfFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPdfFill;\n"
  },
  {
    "path": "src/icons/file-earmark-pdf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPdf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-pdf', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n        <path d=\"M4.603 14.087a.8.8 0 0 1-.438-.42c-.195-.388-.13-.776.08-1.102.198-.307.526-.568.897-.787a7.7 7.7 0 0 1 1.482-.645 20 20 0 0 0 1.062-2.227 7.3 7.3 0 0 1-.43-1.295c-.086-.4-.119-.796-.046-1.136.075-.354.274-.672.65-.823.192-.077.4-.12.602-.077a.7.7 0 0 1 .477.365c.088.164.12.356.127.538.007.188-.012.396-.047.614-.084.51-.27 1.134-.52 1.794a11 11 0 0 0 .98 1.686 5.8 5.8 0 0 1 1.334.05c.364.066.734.195.96.465.12.144.193.32.2.518.007.192-.047.382-.138.563a1.04 1.04 0 0 1-.354.416.86.86 0 0 1-.51.138c-.331-.014-.654-.196-.933-.417a5.7 5.7 0 0 1-.911-.95 11.7 11.7 0 0 0-1.997.406 11.3 11.3 0 0 1-1.02 1.51c-.292.35-.609.656-.927.787a.8.8 0 0 1-.58.029m1.379-1.901q-.25.115-.459.238c-.328.194-.541.383-.647.547-.094.145-.096.25-.04.361q.016.032.026.044l.035-.012c.137-.056.355-.235.635-.572a8 8 0 0 0 .45-.606m1.64-1.33a13 13 0 0 1 1.01-.193 12 12 0 0 1-.51-.858 21 21 0 0 1-.5 1.05zm2.446.45q.226.245.435.41c.24.19.407.253.498.256a.1.1 0 0 0 .07-.015.3.3 0 0 0 .094-.125.44.44 0 0 0 .059-.2.1.1 0 0 0-.026-.063c-.052-.062-.2-.152-.518-.209a4 4 0 0 0-.612-.053zM8.078 7.8a7 7 0 0 0 .2-.828q.046-.282.038-.465a.6.6 0 0 0-.032-.198.5.5 0 0 0-.145.04c-.087.035-.158.106-.196.283-.04.192-.03.469.046.822q.036.167.09.346z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPdf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPdf;\n"
  },
  {
    "path": "src/icons/file-earmark-person-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPersonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-person-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0m2 5.755V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-.245S4 12 8 12s5 1.755 5 1.755\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPersonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPersonFill;\n"
  },
  {
    "path": "src/icons/file-earmark-person.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPerson = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-person', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2v9.255S12 12 8 12s-5 1.755-5 1.755V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPerson.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPerson;\n"
  },
  {
    "path": "src/icons/file-earmark-play-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPlayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-play-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M6 6.883a.5.5 0 0 1 .757-.429l3.528 2.117a.5.5 0 0 1 0 .858l-3.528 2.117a.5.5 0 0 1-.757-.43V6.884z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPlayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPlayFill;\n"
  },
  {
    "path": "src/icons/file-earmark-play.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPlay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-play', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 6.883v4.234a.5.5 0 0 0 .757.429l3.528-2.117a.5.5 0 0 0 0-.858L6.757 6.454a.5.5 0 0 0-.757.43z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPlay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPlay;\n"
  },
  {
    "path": "src/icons/file-earmark-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M8.5 7v1.5H10a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V9.5H6a.5.5 0 0 1 0-1h1.5V7a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPlusFill;\n"
  },
  {
    "path": "src/icons/file-earmark-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V9.5H6a.5.5 0 0 1 0-1h1.5V7a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPlus;\n"
  },
  {
    "path": "src/icons/file-earmark-post-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPostFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-post-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m-5-.5H7a.5.5 0 0 1 0 1H4.5a.5.5 0 0 1 0-1m0 3h7a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPostFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPostFill;\n"
  },
  {
    "path": "src/icons/file-earmark-post.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPost = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-post', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n        <path d=\"M4 6.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5H7a.5.5 0 0 1 0 1H4.5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPost.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPost;\n"
  },
  {
    "path": "src/icons/file-earmark-ppt-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPptFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-ppt-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.188 10H7V6.5h1.188a1.75 1.75 0 1 1 0 3.5\" />\n        <path d=\"M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2zM7 5.5a1 1 0 0 0-1 1V13a.5.5 0 0 0 1 0v-2h1.188a2.75 2.75 0 0 0 0-5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPptFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPptFill;\n"
  },
  {
    "path": "src/icons/file-earmark-ppt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkPpt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-ppt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 5.5a1 1 0 0 0-1 1V13a.5.5 0 0 0 1 0v-2h1.188a2.75 2.75 0 0 0 0-5.5zM8.188 10H7V6.5h1.188a1.75 1.75 0 1 1 0 3.5\" />\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkPpt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkPpt;\n"
  },
  {
    "path": "src/icons/file-earmark-richtext-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkRichtextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-richtext-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M7 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m-.861 1.542 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V9.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V9s1.54-1.274 1.639-1.208M5 11h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1m0 2h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkRichtextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkRichtextFill;\n"
  },
  {
    "path": "src/icons/file-earmark-richtext.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkRichtext = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-richtext', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n        <path d=\"M4.5 12.5A.5.5 0 0 1 5 12h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5m0-2A.5.5 0 0 1 5 10h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5m1.639-3.708 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V8.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V8s1.54-1.274 1.639-1.208M6.25 6a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkRichtext.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkRichtext;\n"
  },
  {
    "path": "src/icons/file-earmark-ruled-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkRuledFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-ruled-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M3 9h10v1H6v2h7v1H6v2H5v-2H3v-1h2v-2H3z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkRuledFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkRuledFill;\n"
  },
  {
    "path": "src/icons/file-earmark-ruled.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkRuled = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-ruled', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V9H3V2a1 1 0 0 1 1-1h5.5zM3 12v-2h2v2zm0 1h2v2H4a1 1 0 0 1-1-1zm3 2v-2h7v1a1 1 0 0 1-1 1zm7-3H6v-2h7z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkRuled.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkRuled;\n"
  },
  {
    "path": "src/icons/file-earmark-slides-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkSlidesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-slides-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 9.78V7.22c0-.096.106-.156.19-.106l2.13 1.279a.125.125 0 0 1 0 .214l-2.13 1.28A.125.125 0 0 1 7 9.778z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M5 6h6a.5.5 0 0 1 .496.438l.5 4A.5.5 0 0 1 11.5 11h-3v2.016c.863.055 1.5.251 1.5.484 0 .276-.895.5-2 .5s-2-.224-2-.5c0-.233.637-.429 1.5-.484V11h-3a.5.5 0 0 1-.496-.562l.5-4A.5.5 0 0 1 5 6\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkSlidesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkSlidesFill;\n"
  },
  {
    "path": "src/icons/file-earmark-slides.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkSlides = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-slides', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 6a.5.5 0 0 0-.496.438l-.5 4A.5.5 0 0 0 4.5 11h3v2.016c-.863.055-1.5.251-1.5.484 0 .276.895.5 2 .5s2-.224 2-.5c0-.233-.637-.429-1.5-.484V11h3a.5.5 0 0 0 .496-.562l-.5-4A.5.5 0 0 0 11 6zm2 3.78V7.22c0-.096.106-.156.19-.106l2.13 1.279a.125.125 0 0 1 0 .214l-2.13 1.28A.125.125 0 0 1 7 9.778z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkSlides.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkSlides;\n"
  },
  {
    "path": "src/icons/file-earmark-spreadsheet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkSpreadsheetFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-spreadsheet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 12v-2h3v2z\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M3 9h10v1h-3v2h3v1h-3v2H9v-2H6v2H5v-2H3v-1h2v-2H3z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkSpreadsheetFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkSpreadsheetFill;\n"
  },
  {
    "path": "src/icons/file-earmark-spreadsheet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkSpreadsheet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-spreadsheet', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V9H3V2a1 1 0 0 1 1-1h5.5zM3 12v-2h2v2zm0 1h2v2H4a1 1 0 0 1-1-1zm3 2v-2h3v2zm4 0v-2h3v1a1 1 0 0 1-1 1zm3-3h-3v-2h3zm-7 0v-2h3v2z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkSpreadsheet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkSpreadsheet;\n"
  },
  {
    "path": "src/icons/file-earmark-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M4.5 9a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1zM4 10.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkTextFill;\n"
  },
  {
    "path": "src/icons/file-earmark-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zM5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.5zm0 1v2A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkText;\n"
  },
  {
    "path": "src/icons/file-earmark-word-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkWordFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-word-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M5.485 6.879l1.036 4.144.997-3.655a.5.5 0 0 1 .964 0l.997 3.655 1.036-4.144a.5.5 0 0 1 .97.242l-1.5 6a.5.5 0 0 1-.967.01L8 9.402l-1.018 3.73a.5.5 0 0 1-.967-.01l-1.5-6a.5.5 0 1 1 .97-.242z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkWordFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkWordFill;\n"
  },
  {
    "path": "src/icons/file-earmark-word.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkWord = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-word', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.485 6.879a.5.5 0 1 0-.97.242l1.5 6a.5.5 0 0 0 .967.01L8 9.402l1.018 3.73a.5.5 0 0 0 .967-.01l1.5-6a.5.5 0 0 0-.97-.242l-1.036 4.144-.997-3.655a.5.5 0 0 0-.964 0l-.997 3.655L5.485 6.88z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkWord.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkWord;\n"
  },
  {
    "path": "src/icons/file-earmark-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M6.854 7.146 8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkXFill;\n"
  },
  {
    "path": "src/icons/file-earmark-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.854 7.146a.5.5 0 1 0-.708.708L7.293 9l-1.147 1.146a.5.5 0 0 0 .708.708L8 9.707l1.146 1.147a.5.5 0 0 0 .708-.708L8.707 9l1.147-1.146a.5.5 0 0 0-.708-.708L8 8.293z\" />\n        <path d=\"M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkX;\n"
  },
  {
    "path": "src/icons/file-earmark-zip-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkZipFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-zip-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 9.438V8.5h1v.938a1 1 0 0 0 .03.243l.4 1.598-.93.62-.93-.62.4-1.598a1 1 0 0 0 .03-.243\" />\n        <path d=\"M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1m-4-.5V2h-1V1H6v1h1v1H6v1h1v1H6v1h1v1H5.5V6h-1V5h1V4h-1V3zm0 4.5h1a1 1 0 0 1 1 1v.938l.4 1.599a1 1 0 0 1-.416 1.074l-.93.62a1 1 0 0 1-1.109 0l-.93-.62a1 1 0 0 1-.415-1.074l.4-1.599V8.5a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkZipFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkZipFill;\n"
  },
  {
    "path": "src/icons/file-earmark-zip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmarkZip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark-zip', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 7.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v.938l.4 1.599a1 1 0 0 1-.416 1.074l-.93.62a1 1 0 0 1-1.11 0l-.929-.62a1 1 0 0 1-.415-1.074L5 8.438zm2 0H6v.938a1 1 0 0 1-.03.243l-.4 1.598.93.62.929-.62-.4-1.598A1 1 0 0 1 7 8.438z\" />\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1h-2v1h-1v1h1v1h-1v1h1v1H6V5H5V4h1V3H5V2h1V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmarkZip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmarkZip;\n"
  },
  {
    "path": "src/icons/file-earmark.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEarmark = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-earmark', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z\" />\n      </svg>\n    );\n  },\n);\n\nFileEarmark.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEarmark;\n"
  },
  {
    "path": "src/icons/file-easel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEaselFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-easel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 6.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8.5 5h2A1.5 1.5 0 0 1 12 6.5v2a1.5 1.5 0 0 1-1.5 1.5h-.473l.447 1.342a.5.5 0 0 1-.948.316L8.973 10H8.5v1a.5.5 0 0 1-1 0v-1h-.473l-.553 1.658a.5.5 0 1 1-.948-.316L5.973 10H5.5A1.5 1.5 0 0 1 4 8.5v-2A1.5 1.5 0 0 1 5.5 5h2a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nFileEaselFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEaselFill;\n"
  },
  {
    "path": "src/icons/file-easel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileEasel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-easel', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5a.5.5 0 1 0-1 0h-2A1.5 1.5 0 0 0 4 6.5v2A1.5 1.5 0 0 0 5.5 10h.473l-.447 1.342a.5.5 0 1 0 .948.316L7.027 10H7.5v1a.5.5 0 0 0 1 0v-1h.473l.553 1.658a.5.5 0 1 0 .948-.316L10.027 10h.473A1.5 1.5 0 0 0 12 8.5v-2A1.5 1.5 0 0 0 10.5 5zM5 6.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileEasel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileEasel;\n"
  },
  {
    "path": "src/icons/file-excel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileExcelFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-excel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5.884 4.68 8 7.219l2.116-2.54a.5.5 0 1 1 .768.641L8.651 8l2.233 2.68a.5.5 0 0 1-.768.64L8 8.781l-2.116 2.54a.5.5 0 0 1-.768-.641L7.349 8 5.116 5.32a.5.5 0 1 1 .768-.64\" />\n      </svg>\n    );\n  },\n);\n\nFileExcelFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileExcelFill;\n"
  },
  {
    "path": "src/icons/file-excel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileExcel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-excel', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.18 4.616a.5.5 0 0 1 .704.064L8 7.219l2.116-2.54a.5.5 0 1 1 .768.641L8.651 8l2.233 2.68a.5.5 0 0 1-.768.64L8 8.781l-2.116 2.54a.5.5 0 0 1-.768-.641L7.349 8 5.116 5.32a.5.5 0 0 1 .064-.704\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileExcel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileExcel;\n"
  },
  {
    "path": "src/icons/file-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2\"\n        />\n      </svg>\n    );\n  },\n);\n\nFileFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileFill;\n"
  },
  {
    "path": "src/icons/file-font-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileFontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-font-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5.057 4h5.886L11 6h-.5c-.18-1.096-.356-1.192-1.694-1.235l-.298-.01v6.09c0 .47.1.582.903.655v.5H6.59v-.5c.799-.073.898-.184.898-.654V4.755l-.293.01C5.856 4.808 5.68 4.905 5.5 6H5z\" />\n      </svg>\n    );\n  },\n);\n\nFileFontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileFontFill;\n"
  },
  {
    "path": "src/icons/file-font.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileFont = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-font', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.943 4H5.057L5 6h.5c.18-1.096.356-1.192 1.694-1.235l.293-.01v6.09c0 .47-.1.582-.898.655v.5H9.41v-.5c-.803-.073-.903-.184-.903-.654V4.755l.298.01c1.338.043 1.514.14 1.694 1.235h.5l-.057-2z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileFont.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileFont;\n"
  },
  {
    "path": "src/icons/file-image-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileImageFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-image-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0h8a2 2 0 0 1 2 2v8.293l-2.73-2.73a1 1 0 0 0-1.52.127l-1.889 2.644-1.769-1.062a1 1 0 0 0-1.222.15L2 12.292V2a2 2 0 0 1 2-2m4.002 5.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n        <path d=\"M10.564 8.27 14 11.708V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-.293l3.578-3.577 2.56 1.536 2.426-3.395z\" />\n      </svg>\n    );\n  },\n);\n\nFileImageFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileImageFill;\n"
  },
  {
    "path": "src/icons/file-image.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileImage = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-image', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M3 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v8l-2.083-2.083a.5.5 0 0 0-.76.063L8 11 5.835 9.7a.5.5 0 0 0-.611.076L3 12z\" />\n      </svg>\n    );\n  },\n);\n\nFileImage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileImage;\n"
  },
  {
    "path": "src/icons/file-lock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileLockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-lock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 6a1 1 0 0 1 2 0v1H7zM6 8.3c0-.042.02-.107.105-.175A.64.64 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.64.64 0 0 1 9.5 11h-3a.64.64 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7z\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nFileLockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileLockFill;\n"
  },
  {
    "path": "src/icons/file-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-lock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a1 1 0 0 1 1 1v1H7V6a1 1 0 0 1 1-1m2 2.076V6a2 2 0 1 0-4 0v1.076c-.54.166-1 .597-1 1.224v2.4c0 .816.781 1.3 1.5 1.3h3c.719 0 1.5-.484 1.5-1.3V8.3c0-.627-.46-1.058-1-1.224M6.105 8.125A.64.64 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.64.64 0 0 1 9.5 11h-3a.64.64 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7V8.3c0-.042.02-.107.105-.175\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileLock;\n"
  },
  {
    "path": "src/icons/file-lock2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileLock2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-lock2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 6a1 1 0 0 1 2 0v1H7z\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nFileLock2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileLock2Fill;\n"
  },
  {
    "path": "src/icons/file-lock2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileLock2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-lock2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a1 1 0 0 1 1 1v1H7V6a1 1 0 0 1 1-1m2 2.076V6a2 2 0 1 0-4 0v1.076c-.54.166-1 .597-1 1.224v2.4c0 .816.781 1.3 1.5 1.3h3c.719 0 1.5-.484 1.5-1.3V8.3c0-.627-.46-1.058-1-1.224\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileLock2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileLock2;\n"
  },
  {
    "path": "src/icons/file-medical-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMedicalFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-medical-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8.5 4.5v.634l.549-.317a.5.5 0 1 1 .5.866L9 6l.549.317a.5.5 0 1 1-.5.866L8.5 6.866V7.5a.5.5 0 0 1-1 0v-.634l-.549.317a.5.5 0 1 1-.5-.866L7 6l-.549-.317a.5.5 0 0 1 .5-.866l.549.317V4.5a.5.5 0 1 1 1 0M5.5 9h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1m0 2h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileMedicalFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMedicalFill;\n"
  },
  {
    "path": "src/icons/file-medical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMedical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-medical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 4.5a.5.5 0 0 0-1 0v.634l-.549-.317a.5.5 0 1 0-.5.866L7 6l-.549.317a.5.5 0 1 0 .5.866l.549-.317V7.5a.5.5 0 1 0 1 0v-.634l.549.317a.5.5 0 1 0 .5-.866L9 6l.549-.317a.5.5 0 1 0-.5-.866l-.549.317zM5.5 9a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileMedical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMedical;\n"
  },
  {
    "path": "src/icons/file-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M6 7.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMinusFill;\n"
  },
  {
    "path": "src/icons/file-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-minus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMinus;\n"
  },
  {
    "path": "src/icons/file-music-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMusicFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-music-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-.5 4.11v1.8l-2.5.5v5.09c0 .495-.301.883-.662 1.123C7.974 12.866 7.499 13 7 13s-.974-.134-1.338-.377C5.302 12.383 5 11.995 5 11.5s.301-.883.662-1.123C6.026 10.134 6.501 10 7 10c.356 0 .7.068 1 .196V4.41a1 1 0 0 1 .804-.98l1.5-.3a1 1 0 0 1 1.196.98\" />\n      </svg>\n    );\n  },\n);\n\nFileMusicFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMusicFill;\n"
  },
  {
    "path": "src/icons/file-music.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileMusic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-music', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.304 3.13a1 1 0 0 1 1.196.98v1.8l-2.5.5v5.09c0 .495-.301.883-.662 1.123C7.974 12.866 7.499 13 7 13s-.974-.134-1.338-.377C5.302 12.383 5 11.995 5 11.5s.301-.883.662-1.123C6.026 10.134 6.501 10 7 10c.356 0 .7.068 1 .196V4.41a1 1 0 0 1 .804-.98z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileMusic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileMusic;\n"
  },
  {
    "path": "src/icons/file-pdf-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePdfFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-pdf-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.523 10.424q.21-.124.459-.238a8 8 0 0 1-.45.606c-.28.337-.498.516-.635.572l-.035.012a.3.3 0 0 1-.026-.044c-.056-.11-.054-.216.04-.36.106-.165.319-.354.647-.548m2.455-1.647q-.178.037-.356.078a21 21 0 0 0 .5-1.05 12 12 0 0 0 .51.858q-.326.048-.654.114m2.525.939a4 4 0 0 1-.435-.41q.344.007.612.054c.317.057.466.147.518.209a.1.1 0 0 1 .026.064.44.44 0 0 1-.06.2.3.3 0 0 1-.094.124.1.1 0 0 1-.069.015c-.09-.003-.258-.066-.498-.256M8.278 4.97c-.04.244-.108.524-.2.829a5 5 0 0 1-.089-.346c-.076-.353-.087-.63-.046-.822.038-.177.11-.248.196-.283a.5.5 0 0 1 .145-.04c.013.03.028.092.032.198q.008.183-.038.465z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m.165 11.668c.09.18.23.343.438.419.207.075.412.04.58-.03.318-.13.635-.436.926-.786.333-.401.683-.927 1.021-1.51a11.6 11.6 0 0 1 1.997-.406c.3.383.61.713.91.95.28.22.603.403.934.417a.86.86 0 0 0 .51-.138c.155-.101.27-.247.354-.416.09-.181.145-.37.138-.563a.84.84 0 0 0-.2-.518c-.226-.27-.596-.4-.96-.465a5.8 5.8 0 0 0-1.335-.05 11 11 0 0 1-.98-1.686c.25-.66.437-1.284.52-1.794.036-.218.055-.426.048-.614a1.24 1.24 0 0 0-.127-.538.7.7 0 0 0-.477-.365c-.202-.043-.41 0-.601.077-.377.15-.576.47-.651.823-.073.34-.04.736.046 1.136.088.406.238.848.43 1.295a20 20 0 0 1-1.062 2.227 7.7 7.7 0 0 0-1.482.645c-.37.22-.699.48-.897.787-.21.326-.275.714-.08 1.103\"\n        />\n      </svg>\n    );\n  },\n);\n\nFilePdfFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePdfFill;\n"
  },
  {
    "path": "src/icons/file-pdf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePdf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-pdf', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n        <path d=\"M4.603 12.087a.8.8 0 0 1-.438-.42c-.195-.388-.13-.776.08-1.102.198-.307.526-.568.897-.787a7.7 7.7 0 0 1 1.482-.645 20 20 0 0 0 1.062-2.227 7.3 7.3 0 0 1-.43-1.295c-.086-.4-.119-.796-.046-1.136.075-.354.274-.672.65-.823.192-.077.4-.12.602-.077a.7.7 0 0 1 .477.365c.088.164.12.356.127.538.007.187-.012.395-.047.614-.084.51-.27 1.134-.52 1.794a11 11 0 0 0 .98 1.686 5.8 5.8 0 0 1 1.334.05c.364.065.734.195.96.465.12.144.193.32.2.518.007.192-.047.382-.138.563a1.04 1.04 0 0 1-.354.416.86.86 0 0 1-.51.138c-.331-.014-.654-.196-.933-.417a5.7 5.7 0 0 1-.911-.95 11.6 11.6 0 0 0-1.997.406 11.3 11.3 0 0 1-1.021 1.51c-.29.35-.608.655-.926.787a.8.8 0 0 1-.58.029m1.379-1.901q-.25.115-.459.238c-.328.194-.541.383-.647.547-.094.145-.096.25-.04.361q.016.032.026.044l.035-.012c.137-.056.355-.235.635-.572a8 8 0 0 0 .45-.606m1.64-1.33a13 13 0 0 1 1.01-.193 12 12 0 0 1-.51-.858 21 21 0 0 1-.5 1.05zm2.446.45q.226.244.435.41c.24.19.407.253.498.256a.1.1 0 0 0 .07-.015.3.3 0 0 0 .094-.125.44.44 0 0 0 .059-.2.1.1 0 0 0-.026-.063c-.052-.062-.2-.152-.518-.209a4 4 0 0 0-.612-.053zM8.078 5.8a7 7 0 0 0 .2-.828q.046-.282.038-.465a.6.6 0 0 0-.032-.198.5.5 0 0 0-.145.04c-.087.035-.158.106-.196.283-.04.192-.03.469.046.822q.036.167.09.346z\" />\n      </svg>\n    );\n  },\n);\n\nFilePdf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePdf;\n"
  },
  {
    "path": "src/icons/file-person-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePersonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-person-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-1 7a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-3 4c2.623 0 4.146.826 5 1.755V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-1.245C3.854 11.825 5.377 11 8 11\" />\n      </svg>\n    );\n  },\n);\n\nFilePersonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePersonFill;\n"
  },
  {
    "path": "src/icons/file-person.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePerson = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-person', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 1a1 1 0 0 1 1 1v10.755S12 11 8 11s-5 1.755-5 1.755V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nFilePerson.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePerson;\n"
  },
  {
    "path": "src/icons/file-play-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePlayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-play-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M6 5.883a.5.5 0 0 1 .757-.429l3.528 2.117a.5.5 0 0 1 0 .858l-3.528 2.117a.5.5 0 0 1-.757-.43V5.884z\" />\n      </svg>\n    );\n  },\n);\n\nFilePlayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePlayFill;\n"
  },
  {
    "path": "src/icons/file-play.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePlay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-play', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 10.117V5.883a.5.5 0 0 1 .757-.429l3.528 2.117a.5.5 0 0 1 0 .858l-3.528 2.117a.5.5 0 0 1-.757-.43z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFilePlay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePlay;\n"
  },
  {
    "path": "src/icons/file-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8.5 6v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nFilePlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePlusFill;\n"
  },
  {
    "path": "src/icons/file-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 6a.5.5 0 0 0-1 0v1.5H6a.5.5 0 0 0 0 1h1.5V10a.5.5 0 0 0 1 0V8.5H10a.5.5 0 0 0 0-1H8.5z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFilePlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePlus;\n"
  },
  {
    "path": "src/icons/file-post-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePostFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-post-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M4.5 3h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1m0 2h7a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilePostFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePostFill;\n"
  },
  {
    "path": "src/icons/file-post.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePost = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-post', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 3.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFilePost.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePost;\n"
  },
  {
    "path": "src/icons/file-ppt-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePptFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-ppt-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.188 8.5H7V5h1.188a1.75 1.75 0 1 1 0 3.5\" />\n        <path d=\"M4 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m3 4a1 1 0 0 0-1 1v6.5a.5.5 0 0 0 1 0v-2h1.188a2.75 2.75 0 0 0 0-5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFilePptFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePptFill;\n"
  },
  {
    "path": "src/icons/file-ppt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilePpt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-ppt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n        <path d=\"M6 5a1 1 0 0 1 1-1h1.188a2.75 2.75 0 0 1 0 5.5H7v2a.5.5 0 0 1-1 0zm1 3.5h1.188a1.75 1.75 0 1 0 0-3.5H7z\" />\n      </svg>\n    );\n  },\n);\n\nFilePpt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilePpt;\n"
  },
  {
    "path": "src/icons/file-richtext-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileRichtextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-richtext-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M7 4.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m-.861 1.542 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V7.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V7s1.54-1.274 1.639-1.208M5 9h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1m0 2h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileRichtextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileRichtextFill;\n"
  },
  {
    "path": "src/icons/file-richtext.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileRichtext = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-richtext', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 4.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m-.861 1.542 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V7.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V7s1.54-1.274 1.639-1.208M5 9a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileRichtext.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileRichtext;\n"
  },
  {
    "path": "src/icons/file-ruled-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileRuledFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-ruled-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v4h12V2a2 2 0 0 0-2-2m2 7H6v2h8zm0 3H6v2h8zm0 3H6v3h6a2 2 0 0 0 2-2zm-9 3v-3H2v1a2 2 0 0 0 2 2zm-3-4h3v-2H2zm0-3h3V7H2z\" />\n      </svg>\n    );\n  },\n);\n\nFileRuledFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileRuledFill;\n"
  },
  {
    "path": "src/icons/file-ruled.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileRuled = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-ruled', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v4h10V2a1 1 0 0 0-1-1zm9 6H6v2h7zm0 3H6v2h7zm0 3H6v2h6a1 1 0 0 0 1-1zm-8 2v-2H3v1a1 1 0 0 0 1 1zm-2-3h2v-2H3zm0-3h2V7H3z\" />\n      </svg>\n    );\n  },\n);\n\nFileRuled.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileRuled;\n"
  },
  {
    "path": "src/icons/file-slides-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileSlidesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-slides-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 7.78V5.22c0-.096.106-.156.19-.106l2.13 1.279a.125.125 0 0 1 0 .214l-2.13 1.28A.125.125 0 0 1 7 7.778z\" />\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5 4h6a.5.5 0 0 1 .496.438l.5 4A.5.5 0 0 1 11.5 9h-3v2.016c.863.055 1.5.251 1.5.484 0 .276-.895.5-2 .5s-2-.224-2-.5c0-.233.637-.429 1.5-.484V9h-3a.5.5 0 0 1-.496-.562l.5-4A.5.5 0 0 1 5 4\" />\n      </svg>\n    );\n  },\n);\n\nFileSlidesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileSlidesFill;\n"
  },
  {
    "path": "src/icons/file-slides.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileSlides = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-slides', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 4a.5.5 0 0 0-.496.438l-.5 4A.5.5 0 0 0 4.5 9h3v2.016c-.863.055-1.5.251-1.5.484 0 .276.895.5 2 .5s2-.224 2-.5c0-.233-.637-.429-1.5-.484V9h3a.5.5 0 0 0 .496-.562l-.5-4A.5.5 0 0 0 11 4zm2 3.78V5.22c0-.096.106-.156.19-.106l2.13 1.279a.125.125 0 0 1 0 .214l-2.13 1.28A.125.125 0 0 1 7 7.778z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileSlides.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileSlides;\n"
  },
  {
    "path": "src/icons/file-spreadsheet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileSpreadsheetFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-spreadsheet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v4h12V2a2 2 0 0 0-2-2m2 7h-4v2h4zm0 3h-4v2h4zm0 3h-4v3h2a2 2 0 0 0 2-2zm-5 3v-3H6v3zm-4 0v-3H2v1a2 2 0 0 0 2 2zm-3-4h3v-2H2zm0-3h3V7H2zm4 0V7h3v2zm0 1h3v2H6z\" />\n      </svg>\n    );\n  },\n);\n\nFileSpreadsheetFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileSpreadsheetFill;\n"
  },
  {
    "path": "src/icons/file-spreadsheet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileSpreadsheet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-spreadsheet', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v4h10V2a1 1 0 0 0-1-1zm9 6h-3v2h3zm0 3h-3v2h3zm0 3h-3v2h2a1 1 0 0 0 1-1zm-4 2v-2H6v2zm-4 0v-2H3v1a1 1 0 0 0 1 1zm-2-3h2v-2H3zm0-3h2V7H3zm3-2v2h3V7zm3 3H6v2h3z\" />\n      </svg>\n    );\n  },\n);\n\nFileSpreadsheet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileSpreadsheet;\n"
  },
  {
    "path": "src/icons/file-text-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileTextFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-text-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5 4h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1m-.5 2.5A.5.5 0 0 1 5 6h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5M5 8h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1m0 2h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nFileTextFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileTextFill;\n"
  },
  {
    "path": "src/icons/file-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-text', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 4a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm-.5 2.5A.5.5 0 0 1 5 6h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5M5 8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileText;\n"
  },
  {
    "path": "src/icons/file-word-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileWordFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-word-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5.485 4.879l1.036 4.144.997-3.655a.5.5 0 0 1 .964 0l.997 3.655 1.036-4.144a.5.5 0 0 1 .97.242l-1.5 6a.5.5 0 0 1-.967.01L8 7.402l-1.018 3.73a.5.5 0 0 1-.967-.01l-1.5-6a.5.5 0 1 1 .97-.242z\" />\n      </svg>\n    );\n  },\n);\n\nFileWordFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileWordFill;\n"
  },
  {
    "path": "src/icons/file-word.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileWord = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-word', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.879 4.515a.5.5 0 0 1 .606.364l1.036 4.144.997-3.655a.5.5 0 0 1 .964 0l.997 3.655 1.036-4.144a.5.5 0 0 1 .97.242l-1.5 6a.5.5 0 0 1-.967.01L8 7.402l-1.018 3.73a.5.5 0 0 1-.967-.01l-1.5-6a.5.5 0 0 1 .364-.606z\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileWord.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileWord;\n"
  },
  {
    "path": "src/icons/file-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M6.854 6.146 8 7.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 8l1.147 1.146a.5.5 0 0 1-.708.708L8 8.707 6.854 9.854a.5.5 0 0 1-.708-.708L7.293 8 6.146 6.854a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nFileXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileXFill;\n"
  },
  {
    "path": "src/icons/file-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.146 6.146a.5.5 0 0 1 .708 0L8 7.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 8l1.147 1.146a.5.5 0 0 1-.708.708L8 8.707 6.854 9.854a.5.5 0 0 1-.708-.708L7.293 8 6.146 6.854a.5.5 0 0 1 0-.708\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFileX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileX;\n"
  },
  {
    "path": "src/icons/file-zip-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileZipFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-zip-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 9.438V8.5h-1v.938a1 1 0 0 1-.03.243l-.4 1.598.93.62.93-.62-.4-1.598a1 1 0 0 1-.03-.243\" />\n        <path d=\"M4 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m2.5 8.5v.938l-.4 1.599a1 1 0 0 0 .416 1.074l.93.62a1 1 0 0 0 1.109 0l.93-.62a1 1 0 0 0 .415-1.074l-.4-1.599V8.5a1 1 0 0 0-1-1h-1a1 1 0 0 0-1 1m1-5.5h-1v1h1v1h-1v1h1v1H9V6H8V5h1V4H8V3h1V2H8V1H6.5v1h1z\" />\n      </svg>\n    );\n  },\n);\n\nFileZipFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileZipFill;\n"
  },
  {
    "path": "src/icons/file-zip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FileZip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file-zip', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 7.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v.938l.4 1.599a1 1 0 0 1-.416 1.074l-.93.62a1 1 0 0 1-1.109 0l-.93-.62a1 1 0 0 1-.415-1.074l.4-1.599zm2 0h-1v.938a1 1 0 0 1-.03.243l-.4 1.598.93.62.93-.62-.4-1.598a1 1 0 0 1-.03-.243z\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm5.5-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H9v1H8v1h1v1H8v1h1v1H7.5V5h-1V4h1V3h-1V2h1z\" />\n      </svg>\n    );\n  },\n);\n\nFileZip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FileZip;\n"
  },
  {
    "path": "src/icons/file.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst File = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-file', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFile.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default File;\n"
  },
  {
    "path": "src/icons/files-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilesAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-files-alt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 0H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2 2 2 0 0 0 2-2V4a2 2 0 0 0-2-2 2 2 0 0 0-2-2m2 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1zM2 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nFilesAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilesAlt;\n"
  },
  {
    "path": "src/icons/files.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Files = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-files', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1M3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nFiles.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Files;\n"
  },
  {
    "path": "src/icons/filetype-aac.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeAac = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-aac', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-5.808 8.554a1.7 1.7 0 0 0-.103.633v.495q0 .369.103.627a.83.83 0 0 0 .299.393.85.85 0 0 0 .477.131.9.9 0 0 0 .402-.088.7.7 0 0 0 .272-.248.8.8 0 0 0 .117-.364h.765v.076a1.27 1.27 0 0 1-.226.674q-.204.29-.55.454a1.8 1.8 0 0 1-.785.164q-.54 0-.915-.216a1.4 1.4 0 0 1-.57-.627q-.195-.408-.194-.976v-.498q0-.568.196-.978.195-.411.571-.633.378-.223.912-.223.327 0 .606.097.28.093.49.272a1.33 1.33 0 0 1 .465.964v.073h-.765a.85.85 0 0 0-.12-.38.7.7 0 0 0-.272-.261.8.8 0 0 0-.399-.097.8.8 0 0 0-.474.138.87.87 0 0 0-.302.398M.8 15.925l.313-1.028H2.45l.314 1.028h.84l-1.335-3.999h-.926l-1.342 4zm1.002-3.234.489 1.617H1.277l.49-1.617zm2.63 3.234.313-1.028H6.08l.313 1.028h.841L5.9 11.926h-.926l-1.341 4zm1.001-3.234.49 1.617H4.909l.49-1.617z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeAac.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeAac;\n"
  },
  {
    "path": "src/icons/filetype-ai.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeAi = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-ai', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H6v-1h6a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.113 14.82.8 15.85H0l1.342-3.999h.926l1.336 3.999h-.841l-.314-1.028H1.113Zm1.178-.588-.49-1.617h-.034l-.49 1.617zm2.425-2.382v3.999h-.791V11.85h.79Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeAi.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeAi;\n"
  },
  {
    "path": "src/icons/filetype-bmp.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeBmp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-bmp', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM0 15.849h1.664q.408 0 .72-.132.315-.135.493-.386.18-.253.179-.61a1 1 0 0 0-.123-.51.85.85 0 0 0-.323-.325 1.1 1.1 0 0 0-.445-.14v-.036a1 1 0 0 0 .352-.16.8.8 0 0 0 .243-.294.9.9 0 0 0 .09-.422q0-.463-.322-.723-.322-.261-.858-.261H0zm.785-3.404h.7q.28 0 .431.14.155.138.155.384a.5.5 0 0 1-.082.296.5.5 0 0 1-.249.185 1.2 1.2 0 0 1-.433.064H.785zm0 1.62h.75q.231 0 .393.073a.5.5 0 0 1 .24.211.6.6 0 0 1 .082.325q0 .284-.205.434-.205.146-.671.146H.785zm3.474 1.784v-2.66h.038l.952 2.16h.515l.947-2.16h.038v2.66h.715V11.85h-.8l-1.14 2.596h-.026l-1.14-2.596h-.805v3.999zm3.918-3.999h1.6q.434 0 .732.179.302.176.46.477.159.302.159.677t-.162.677q-.158.299-.462.474a1.45 1.45 0 0 1-.733.173h-.803v1.342h-.79zm2.06 1.714a.8.8 0 0 0 .085-.381q0-.34-.185-.521-.185-.182-.512-.182h-.66v1.406h.66a.8.8 0 0 0 .375-.082.57.57 0 0 0 .237-.24\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeBmp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeBmp;\n"
  },
  {
    "path": "src/icons/filetype-cs.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeCs = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-cs', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H8v-1h4a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.629 15.29a1.2 1.2 0 0 1-.112-.449h.765a.58.58 0 0 0 .255.384q.105.073.249.114t.32.041q.245 0 .412-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.152-.326q-.153-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.54-.214 1 1 0 0 1-.35-.367 1.1 1.1 0 0 1-.124-.524q0-.366.19-.639.191-.272.528-.422t.776-.149q.458 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.246-.181.9.9 0 0 0-.37-.068q-.324 0-.512.152a.47.47 0 0 0-.185.384q0 .18.144.3a1 1 0 0 0 .404.175l.621.143q.325.075.566.211t.375.358.134.56q0 .37-.187.656a1.2 1.2 0 0 1-.54.439q-.351.158-.858.158a2.2 2.2 0 0 1-.665-.09 1.4 1.4 0 0 1-.477-.252 1.1 1.1 0 0 1-.29-.375m-2.72-2.23a1.7 1.7 0 0 0-.103.633v.495q0 .369.102.627a.83.83 0 0 0 .299.392.85.85 0 0 0 .478.132.86.86 0 0 0 .4-.088.7.7 0 0 0 .273-.249.8.8 0 0 0 .118-.363h.764v.076a1.27 1.27 0 0 1-.225.674q-.205.29-.551.454a1.8 1.8 0 0 1-.785.164q-.54 0-.914-.217a1.4 1.4 0 0 1-.572-.626Q0 14.756 0 14.188v-.498q0-.569.196-.979a1.44 1.44 0 0 1 .572-.633q.378-.222.91-.222.33 0 .607.097.281.093.49.272a1.32 1.32 0 0 1 .465.964v.073h-.764a.85.85 0 0 0-.12-.38.7.7 0 0 0-.273-.261.8.8 0 0 0-.398-.097.8.8 0 0 0-.475.138.87.87 0 0 0-.302.398Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeCs.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeCs;\n"
  },
  {
    "path": "src/icons/filetype-css.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeCss = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-css', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.397 14.841a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.439 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM.806 13.693q0-.373.102-.633a.87.87 0 0 1 .302-.399.8.8 0 0 1 .475-.137q.225 0 .398.097a.7.7 0 0 1 .272.26.85.85 0 0 1 .12.381h.765v-.072a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.489-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.572.632-.195.41-.196.979v.498q0 .568.193.976.197.407.572.626.375.217.914.217.439 0 .785-.164t.55-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.764a.8.8 0 0 1-.118.363.7.7 0 0 1-.272.25.9.9 0 0 1-.401.087.85.85 0 0 1-.478-.132.83.83 0 0 1-.299-.392 1.7 1.7 0 0 1-.102-.627zM6.78 15.29a1.2 1.2 0 0 1-.111-.449h.764a.58.58 0 0 0 .255.384q.106.073.25.114.142.041.319.041.245 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.152-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.527-.422t.777-.149q.456 0 .779.152.326.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.246-.181.9.9 0 0 0-.37-.068q-.324 0-.512.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .404.175l.621.143q.326.075.566.211t.375.358.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeCss.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeCss;\n"
  },
  {
    "path": "src/icons/filetype-csv.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeCsv = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-csv', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.517 14.841a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.439 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM.806 13.693q0-.373.102-.633a.87.87 0 0 1 .302-.399.8.8 0 0 1 .475-.137q.225 0 .398.097a.7.7 0 0 1 .272.26.85.85 0 0 1 .12.381h.765v-.072a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.489-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.572.632-.195.41-.196.979v.498q0 .568.193.976.197.407.572.626.375.217.914.217.439 0 .785-.164t.55-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.764a.8.8 0 0 1-.118.363.7.7 0 0 1-.272.25.9.9 0 0 1-.401.087.85.85 0 0 1-.478-.132.83.83 0 0 1-.299-.392 1.7 1.7 0 0 1-.102-.627zm8.239 2.238h-.953l-1.338-3.999h.917l.896 3.138h.038l.888-3.138h.879z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeCsv.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeCsv;\n"
  },
  {
    "path": "src/icons/filetype-doc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeDoc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-doc', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-7.839 9.166v.522q0 .384-.117.641a.86.86 0 0 1-.322.387.9.9 0 0 1-.469.126.9.9 0 0 1-.471-.126.87.87 0 0 1-.32-.386 1.55 1.55 0 0 1-.117-.642v-.522q0-.386.117-.641a.87.87 0 0 1 .32-.387.87.87 0 0 1 .471-.129q.264 0 .469.13a.86.86 0 0 1 .322.386q.117.255.117.641m.803.519v-.513q0-.565-.205-.972a1.46 1.46 0 0 0-.589-.63q-.381-.22-.917-.22-.533 0-.92.22a1.44 1.44 0 0 0-.589.627q-.204.406-.205.975v.513q0 .563.205.973.205.406.59.627.386.216.92.216.535 0 .916-.216.383-.22.59-.627.204-.41.204-.973M0 11.926v4h1.459q.603 0 .999-.238a1.45 1.45 0 0 0 .595-.689q.196-.45.196-1.084 0-.63-.196-1.075a1.43 1.43 0 0 0-.59-.68q-.395-.234-1.004-.234zm.791.645h.563q.371 0 .609.152a.9.9 0 0 1 .354.454q.118.302.118.753a2.3 2.3 0 0 1-.068.592 1.1 1.1 0 0 1-.196.422.8.8 0 0 1-.334.252 1.3 1.3 0 0 1-.483.082H.79V12.57Zm7.422.483a1.7 1.7 0 0 0-.103.633v.495q0 .369.103.627a.83.83 0 0 0 .298.393.85.85 0 0 0 .478.131.9.9 0 0 0 .401-.088.7.7 0 0 0 .273-.248.8.8 0 0 0 .117-.364h.765v.076a1.27 1.27 0 0 1-.226.674q-.205.29-.55.454a1.8 1.8 0 0 1-.786.164q-.54 0-.914-.216a1.4 1.4 0 0 1-.571-.627q-.194-.408-.194-.976v-.498q0-.568.197-.978.195-.411.571-.633.378-.223.911-.223.328 0 .607.097.28.093.489.272a1.33 1.33 0 0 1 .466.964v.073H9.78a.85.85 0 0 0-.12-.38.7.7 0 0 0-.273-.261.8.8 0 0 0-.398-.097.8.8 0 0 0-.475.138.87.87 0 0 0-.301.398\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeDoc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeDoc;\n"
  },
  {
    "path": "src/icons/filetype-docx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeDocx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-docx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-6.839 9.688v-.522a1.5 1.5 0 0 0-.117-.641.86.86 0 0 0-.322-.387.86.86 0 0 0-.469-.129.87.87 0 0 0-.471.13.87.87 0 0 0-.32.386 1.5 1.5 0 0 0-.117.641v.522q0 .384.117.641a.87.87 0 0 0 .32.387.9.9 0 0 0 .471.126.9.9 0 0 0 .469-.126.86.86 0 0 0 .322-.386 1.55 1.55 0 0 0 .117-.642m.803-.516v.513q0 .563-.205.973a1.47 1.47 0 0 1-.589.627q-.381.216-.917.216a1.86 1.86 0 0 1-.92-.216 1.46 1.46 0 0 1-.589-.627 2.15 2.15 0 0 1-.205-.973v-.513q0-.569.205-.975.205-.411.59-.627.386-.22.92-.22.535 0 .916.22.383.219.59.63.204.406.204.972M1 15.925v-3.999h1.459q.609 0 1.005.235.396.233.589.68.196.445.196 1.074 0 .634-.196 1.084-.197.451-.595.689-.396.237-.999.237zm1.354-3.354H1.79v2.707h.563q.277 0 .483-.082a.8.8 0 0 0 .334-.252q.132-.17.196-.422a2.3 2.3 0 0 0 .068-.592q0-.45-.118-.753a.9.9 0 0 0-.354-.454q-.237-.152-.61-.152Zm6.756 1.116q0-.373.103-.633a.87.87 0 0 1 .301-.398.8.8 0 0 1 .475-.138q.225 0 .398.097a.7.7 0 0 1 .273.26.85.85 0 0 1 .12.381h.765v-.073a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.49-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.571.633-.197.41-.197.978v.498q0 .568.194.976.195.406.571.627.375.216.914.216.44 0 .785-.164t.551-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.765a.8.8 0 0 1-.117.364.7.7 0 0 1-.273.248.9.9 0 0 1-.401.088.85.85 0 0 1-.478-.131.83.83 0 0 1-.298-.393 1.7 1.7 0 0 1-.103-.627zm5.092-1.76h.894l-1.275 2.006 1.254 1.992h-.908l-.85-1.415h-.035l-.852 1.415h-.862l1.24-2.015-1.228-1.984h.932l.832 1.439h.035z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeDocx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeDocx;\n"
  },
  {
    "path": "src/icons/filetype-exe.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeExe = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-exe', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM2.575 15.202H.785v-1.073H2.47v-.606H.785v-1.025h1.79v-.648H0v3.999h2.575zM6.31 11.85h-.893l-.823 1.439h-.036l-.832-1.439h-.931l1.227 1.983-1.239 2.016h.861l.853-1.415h.035l.85 1.415h.908l-1.254-1.992zm1.025 3.352h1.79v.647H6.548V11.85h2.576v.648h-1.79v1.025h1.684v.606H7.334v1.073Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeExe.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeExe;\n"
  },
  {
    "path": "src/icons/filetype-gif.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeGif = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-gif', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H9v-1h3a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.278 13.124a1.4 1.4 0 0 0-.14-.492 1.3 1.3 0 0 0-.314-.407 1.5 1.5 0 0 0-.48-.275 1.9 1.9 0 0 0-.636-.1q-.542 0-.926.229a1.5 1.5 0 0 0-.583.632 2.1 2.1 0 0 0-.199.95v.506q0 .408.105.745.105.336.32.58.213.243.533.377.323.132.753.132.402 0 .697-.111a1.29 1.29 0 0 0 .788-.77q.097-.261.097-.551v-.797H1.717v.589h.823v.255q0 .199-.09.363a.67.67 0 0 1-.273.264 1 1 0 0 1-.457.096.87.87 0 0 1-.519-.146.9.9 0 0 1-.305-.413 1.8 1.8 0 0 1-.096-.615v-.499q0-.547.234-.85.237-.3.665-.301a1 1 0 0 1 .3.044q.136.044.236.126a.7.7 0 0 1 .17.19.8.8 0 0 1 .097.25zm1.353 2.801v-3.999H3.84v4h.79Zm1.493-1.59v1.59h-.791v-3.999H7.88v.653H6.124v1.117h1.605v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeGif.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeGif;\n"
  },
  {
    "path": "src/icons/filetype-heic.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeHeic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-heic', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-4.637 8.554a1.7 1.7 0 0 0-.103.633v.495q0 .369.103.627a.83.83 0 0 0 .299.393.85.85 0 0 0 .477.131.9.9 0 0 0 .401-.088.7.7 0 0 0 .273-.248.8.8 0 0 0 .117-.364h.765v.076a1.27 1.27 0 0 1-.226.674q-.205.29-.55.454a1.8 1.8 0 0 1-.786.164q-.54 0-.914-.216a1.4 1.4 0 0 1-.571-.627q-.194-.408-.194-.976v-.498q0-.568.197-.978.196-.411.571-.633.378-.223.911-.223.328 0 .607.097.28.093.489.272a1.32 1.32 0 0 1 .466.964v.073h-.765a.85.85 0 0 0-.12-.38.7.7 0 0 0-.273-.261.8.8 0 0 0-.398-.097.8.8 0 0 0-.475.138.87.87 0 0 0-.301.398m-6.1-1.128v4h-.79V14.21H.79v1.714H0v-3.999h.791v1.626h1.682v-1.626zm1.488 3.352h1.79v.647H3.966v-3.999H6.54v.648H4.75v1.025h1.684v.607H4.751zm3.163.647v-3.999h-.791v4h.79Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeHeic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeHeic;\n"
  },
  {
    "path": "src/icons/filetype-html.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeHtml = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-html', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-9.736 7.35v3.999h-.791v-1.714H1.79v1.714H1V11.85h.791v1.626h1.682V11.85h.79Zm2.251.662v3.337h-.794v-3.337H4.588v-.662h3.064v.662zm2.176 3.337v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596H9.93L8.79 11.85h-.805v3.999zm4.71-.674h1.696v.674H12.61V11.85h.79v3.325Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeHtml.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeHtml;\n"
  },
  {
    "path": "src/icons/filetype-java.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeJava = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-java', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.521 15.175a1.3 1.3 0 0 1-.082-.466h.765a.6.6 0 0 0 .073.27.5.5 0 0 0 .454.246q.285 0 .422-.164.138-.165.138-.466V11.85h.79v2.725q0 .66-.357 1.005-.354.345-.984.345a1.6 1.6 0 0 1-.568-.094 1.1 1.1 0 0 1-.408-.266 1.1 1.1 0 0 1-.243-.39m3.972-.354-.314 1.028h-.8l1.342-3.999h.926l1.336 3.999h-.84l-.314-1.028zm1.178-.59-.49-1.616h-.035l-.49 1.617zm2.342 1.618h.952l1.327-3.999h-.878l-.888 3.138h-.038L8.59 11.85h-.917zm3.087-1.028-.314 1.028h-.8l1.342-3.999h.926l1.336 3.999h-.84l-.314-1.028zm1.178-.59-.49-1.616h-.035l-.49 1.617z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeJava.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeJava;\n"
  },
  {
    "path": "src/icons/filetype-jpg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeJpg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-jpg', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-4.34 8.132q.114.23.14.492h-.776a.8.8 0 0 0-.097-.249.7.7 0 0 0-.17-.19.7.7 0 0 0-.237-.126 1 1 0 0 0-.299-.044q-.428 0-.665.302-.234.301-.234.85v.498q0 .351.097.615a.9.9 0 0 0 .304.413.87.87 0 0 0 .519.146 1 1 0 0 0 .457-.096.67.67 0 0 0 .272-.264q.09-.164.091-.363v-.255H8.24v-.59h1.576v.798q0 .29-.097.55a1.3 1.3 0 0 1-.293.458 1.4 1.4 0 0 1-.495.313q-.296.111-.697.111a2 2 0 0 1-.753-.132 1.45 1.45 0 0 1-.533-.377 1.6 1.6 0 0 1-.32-.58 2.5 2.5 0 0 1-.105-.745v-.506q0-.543.2-.95.201-.406.582-.633.384-.228.926-.228.357 0 .636.1.28.1.48.275t.314.407ZM0 14.786q0 .246.082.465.083.22.243.39.165.17.407.267.246.093.569.093.63 0 .984-.345.357-.346.358-1.005v-2.725h-.791v2.745q0 .303-.138.466t-.422.164a.5.5 0 0 1-.454-.246.6.6 0 0 1-.073-.27H0Zm4.92-2.86H3.322v4h.791v-1.343h.803q.43 0 .732-.172.305-.177.463-.475.162-.302.161-.677 0-.374-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179Zm.546 1.333a.8.8 0 0 1-.085.381.57.57 0 0 1-.238.24.8.8 0 0 1-.375.082H4.11v-1.406h.66q.327 0 .512.182.185.181.185.521Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeJpg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeJpg;\n"
  },
  {
    "path": "src/icons/filetype-js.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeJs = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-js', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H8v-1h4a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.186 15.29a1.2 1.2 0 0 1-.111-.449h.765a.58.58 0 0 0 .255.384q.105.073.249.114.143.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.151-.12-.462-.193l-.619-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.528-.422.336-.15.776-.149.457 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.247-.181.9.9 0 0 0-.369-.068q-.325 0-.513.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .405.175l.62.143q.327.075.566.211.24.136.375.358t.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375m-3.104-.033A1.3 1.3 0 0 1 0 14.791h.765a.6.6 0 0 0 .073.27.5.5 0 0 0 .454.246q.285 0 .422-.164.138-.165.138-.466v-2.745h.79v2.725q0 .66-.357 1.005-.354.345-.984.345a1.6 1.6 0 0 1-.569-.094 1.15 1.15 0 0 1-.407-.266 1.1 1.1 0 0 1-.243-.39\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeJs.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeJs;\n"
  },
  {
    "path": "src/icons/filetype-json.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeJson = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-json', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM4.151 15.29a1.2 1.2 0 0 1-.111-.449h.764a.58.58 0 0 0 .255.384q.105.073.25.114.142.041.319.041.245 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .084-.29.39.39 0 0 0-.152-.326q-.152-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.352-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.192-.272.528-.422.337-.15.777-.149.456 0 .779.152.326.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.246-.181.9.9 0 0 0-.37-.068q-.324 0-.512.152a.47.47 0 0 0-.185.384q0 .18.144.3a1 1 0 0 0 .404.175l.621.143q.326.075.566.211a1 1 0 0 1 .375.358q.135.222.135.56 0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375m-3.104-.033a1.3 1.3 0 0 1-.082-.466h.764a.6.6 0 0 0 .074.27.5.5 0 0 0 .454.246q.285 0 .422-.164.137-.165.137-.466v-2.745h.791v2.725q0 .66-.357 1.005-.355.345-.985.345a1.6 1.6 0 0 1-.568-.094 1.15 1.15 0 0 1-.407-.266 1.1 1.1 0 0 1-.243-.39m9.091-1.585v.522q0 .384-.117.641a.86.86 0 0 1-.322.387.9.9 0 0 1-.47.126.9.9 0 0 1-.47-.126.87.87 0 0 1-.32-.387 1.55 1.55 0 0 1-.117-.641v-.522q0-.386.117-.641a.87.87 0 0 1 .32-.387.87.87 0 0 1 .47-.129q.265 0 .47.129a.86.86 0 0 1 .322.387q.117.255.117.641m.803.519v-.513q0-.565-.205-.973a1.46 1.46 0 0 0-.59-.63q-.38-.22-.916-.22-.534 0-.92.22a1.44 1.44 0 0 0-.589.628q-.205.407-.205.975v.513q0 .562.205.973.205.407.589.626.386.217.92.217.536 0 .917-.217.384-.22.589-.626.204-.41.205-.973m1.29-.935v2.675h-.746v-3.999h.662l1.752 2.66h.032v-2.66h.75v4h-.656l-1.761-2.676z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeJson.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeJson;\n"
  },
  {
    "path": "src/icons/filetype-jsx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeJsx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-jsx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.075 14.841a1.13 1.13 0 0 0 .401.823q.194.162.478.252.284.091.665.091.507 0 .858-.158.355-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.565-.21l-.621-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.188-.152.513-.152.214 0 .37.068a.6.6 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.199-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.776.15-.337.149-.528.421-.19.273-.19.639 0 .302.123.524t.351.367q.229.143.54.213l.618.144q.31.073.462.193a.39.39 0 0 1 .153.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.176 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM0 14.791q0 .247.082.466.083.22.243.39.165.17.407.267.246.093.569.093.63 0 .984-.346.357-.345.358-1.004v-2.725h-.791v2.745q0 .302-.138.466t-.422.164a.5.5 0 0 1-.454-.246.6.6 0 0 1-.073-.27zm8.907-2.859H9.8l-1.274 2.007L9.78 15.93h-.908l-.85-1.415h-.035l-.853 1.415h-.861l1.24-2.016-1.228-1.983h.931l.832 1.438h.036l.823-1.438Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeJsx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeJsx;\n"
  },
  {
    "path": "src/icons/filetype-key.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeKey = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-key', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.21 11.85h-.87L.83 13.64H.79v-1.79H0v3.999h.791v-1.283l.41-.466 1.12 1.749h.951l-1.488-2.276 1.427-1.723Zm2.903 3.352h-1.79v-1.073h1.685v-.606H4.323v-1.025h1.79v-.648H3.538v3.999h2.575zm2.243-.888v1.535h-.794v-1.52L6.223 11.85H7.1l.853 1.696h.032l.855-1.696h.856z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeKey.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeKey;\n"
  },
  {
    "path": "src/icons/filetype-m4p.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeM4p = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-m4p', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM.706 15.849v-2.66h.038l.952 2.16h.516l.946-2.16h.038v2.66h.715V11.85h-.8l-1.14 2.596h-.026L.805 11.85H0v3.999zm5.237-3.999q-.393.65-.79 1.3t-.748 1.31v.648h1.937v.741h.74v-.741h.49v-.639h-.49V11.85H5.944Zm-.82 2.62v-.021q.27-.51.571-1.017.304-.507.607-.984h.04v2.021H5.124Zm2.893-2.62h1.6q.434 0 .732.179.302.175.46.477t.158.677-.16.677q-.159.298-.464.474a1.45 1.45 0 0 1-.732.173h-.803v1.342h-.79zm2.06 1.714a.8.8 0 0 0 .085-.381q0-.34-.185-.521-.184-.183-.513-.182h-.659v1.406h.66a.8.8 0 0 0 .374-.082.57.57 0 0 0 .238-.24\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeM4p.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeM4p;\n"
  },
  {
    "path": "src/icons/filetype-md.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeMd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-md', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H9v-1h3a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM.706 13.189v2.66H0V11.85h.806l1.14 2.596h.026l1.14-2.596h.8v3.999h-.716v-2.66h-.038l-.946 2.159h-.516l-.952-2.16H.706Zm3.919 2.66V11.85h1.459q.609 0 1.005.234t.589.68q.195.445.196 1.075 0 .634-.196 1.084-.197.451-.595.689-.396.237-1 .237H4.626Zm1.353-3.354h-.562v2.707h.562q.279 0 .484-.082a.8.8 0 0 0 .334-.252 1.1 1.1 0 0 0 .196-.422q.067-.252.067-.592a2.1 2.1 0 0 0-.117-.753.9.9 0 0 0-.354-.454q-.238-.152-.61-.152\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeMd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeMd;\n"
  },
  {
    "path": "src/icons/filetype-mdx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeMdx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-mdx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM.706 15.849v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596h-.026L.805 11.85H0v3.999zm3.559-3.999v3.999h1.459q.603 0 .999-.237a1.45 1.45 0 0 0 .595-.689q.195-.45.196-1.084 0-.63-.196-1.075a1.43 1.43 0 0 0-.59-.68q-.395-.234-1.004-.234zm.79.645h.563q.372 0 .61.152a.9.9 0 0 1 .354.454q.117.302.117.753 0 .34-.067.592a1.1 1.1 0 0 1-.196.422.8.8 0 0 1-.334.252 1.3 1.3 0 0 1-.484.082h-.562v-2.707Zm4.787-.645h.894L9.46 13.857l1.254 1.992h-.908l-.85-1.415h-.035l-.852 1.415h-.862l1.24-2.016L7.22 11.85h.932l.832 1.439h.035z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeMdx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeMdx;\n"
  },
  {
    "path": "src/icons/filetype-mov.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeMov = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-mov', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-6.914 9.166v.522q0 .384-.117.641a.86.86 0 0 1-.323.387.9.9 0 0 1-.468.126.9.9 0 0 1-.472-.126.87.87 0 0 1-.32-.386 1.55 1.55 0 0 1-.117-.642v-.522q0-.386.118-.641a.87.87 0 0 1 .319-.387.87.87 0 0 1 .472-.129q.263 0 .468.13a.86.86 0 0 1 .323.386q.117.255.117.641m.802.519v-.513q0-.565-.205-.972a1.46 1.46 0 0 0-.588-.63q-.381-.22-.917-.22-.534 0-.92.22a1.44 1.44 0 0 0-.59.627q-.204.406-.204.975v.513q0 .563.205.973.205.406.589.627.386.216.92.216.536 0 .917-.216.383-.22.588-.627.205-.41.205-.973m-7.182 1.74v-2.66h.038l.952 2.16h.516l.946-2.16h.038v2.66h.715v-3.999h-.8l-1.14 2.596h-.026l-1.14-2.596H0v4zm9.54 0h-.952l-1.34-3.999h.918l.896 3.138h.038l.888-3.138h.879z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeMov.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeMov;\n"
  },
  {
    "path": "src/icons/filetype-mp3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeMp3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-mp3', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-4.911 9.67h-.443v-.609h.422a.7.7 0 0 0 .322-.073.56.56 0 0 0 .22-.2.5.5 0 0 0 .076-.284.49.49 0 0 0-.176-.392.65.65 0 0 0-.442-.15.7.7 0 0 0-.252.041.6.6 0 0 0-.193.112.5.5 0 0 0-.179.349H7.71q.009-.235.102-.437.094-.202.27-.352.176-.152.428-.237.255-.085.583-.088.418-.003.723.132.304.135.472.372a.9.9 0 0 1 .173.539.83.83 0 0 1-.12.478.96.96 0 0 1-.619.439v.041a1 1 0 0 1 .718.434.9.9 0 0 1 .144.521q.003.285-.117.507a1.1 1.1 0 0 1-.329.378q-.21.152-.486.234-.273.08-.583.08-.451 0-.77-.153a1.2 1.2 0 0 1-.487-.41 1.1 1.1 0 0 1-.178-.563h.726a.46.46 0 0 0 .106.258.7.7 0 0 0 .249.179 1 1 0 0 0 .357.067.9.9 0 0 0 .384-.076.6.6 0 0 0 .252-.217.56.56 0 0 0 .088-.319.56.56 0 0 0-.334-.522.8.8 0 0 0-.372-.079ZM.706 15.925v-2.66h.038l.952 2.16h.516l.946-2.16h.038v2.66h.715v-3.999h-.8l-1.14 2.596h-.026l-1.14-2.596H0v4zm5.458-3.999h-1.6v4h.792v-1.342h.803q.43 0 .732-.173.304-.177.463-.475a1.4 1.4 0 0 0 .161-.677q0-.374-.158-.677a1.2 1.2 0 0 0-.46-.477 1.4 1.4 0 0 0-.733-.179m.545 1.333a.8.8 0 0 1-.085.381.57.57 0 0 1-.237.24.8.8 0 0 1-.375.082h-.66v-1.406h.66q.328 0 .513.182.184.181.184.521\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeMp3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeMp3;\n"
  },
  {
    "path": "src/icons/filetype-mp4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeMp4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-mp4', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM.706 15.849v-2.66h.038l.952 2.16h.516l.946-2.16h.038v2.66h.715V11.85h-.8l-1.14 2.596h-.026L.805 11.85H0v3.999zm5.278-3.999h-1.6v3.999h.792v-1.342h.803q.43 0 .732-.173.304-.175.463-.474a1.4 1.4 0 0 0 .161-.677q0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477 1.4 1.4 0 0 0-.733-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.237.241.8.8 0 0 1-.375.082h-.66V12.48h.66q.329 0 .513.181.184.183.184.522m1.505-.032q.4-.65.791-1.301h1.14v2.62h.49v.638h-.49v.741h-.741v-.741H7.287v-.648q.353-.66.747-1.31Zm-.029 1.298v.02h1.219v-2.021h-.041q-.302.477-.607.984-.3.507-.571 1.017\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeMp4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeMp4;\n"
  },
  {
    "path": "src/icons/filetype-otf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeOtf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-otf', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM2.622 13.666v.522q0 .384-.117.641a.86.86 0 0 1-.322.387.9.9 0 0 1-.47.126.9.9 0 0 1-.47-.126.87.87 0 0 1-.32-.386 1.55 1.55 0 0 1-.117-.642v-.522q0-.386.117-.641a.87.87 0 0 1 .32-.387.87.87 0 0 1 .47-.129q.265 0 .47.13a.86.86 0 0 1 .322.386q.117.255.117.641m.803.519v-.513q0-.565-.205-.972a1.46 1.46 0 0 0-.59-.63q-.38-.22-.916-.22-.534 0-.92.22a1.44 1.44 0 0 0-.589.627Q0 13.103 0 13.672v.513q0 .563.205.973.205.406.589.627.386.216.92.216.536 0 .917-.216a1.47 1.47 0 0 0 .589-.627q.204-.41.205-.973m2 1.74v-3.337H6.56v-.662H3.497v.662H4.63v3.337h.794Zm2.251-1.59v1.59h-.79v-3.999h2.548v.653H7.676v1.117h1.606v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeOtf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeOtf;\n"
  },
  {
    "path": "src/icons/filetype-pdf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePdf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-pdf', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.6 11.85H0v3.999h.791v-1.342h.803q.43 0 .732-.173.305-.175.463-.474a1.4 1.4 0 0 0 .161-.677q0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.238.241.8.8 0 0 1-.375.082H.788V12.48h.66q.327 0 .512.181.185.183.185.522m1.217-1.333v3.999h1.46q.602 0 .998-.237a1.45 1.45 0 0 0 .595-.689q.196-.45.196-1.084 0-.63-.196-1.075a1.43 1.43 0 0 0-.589-.68q-.396-.234-1.005-.234zm.791.645h.563q.371 0 .609.152a.9.9 0 0 1 .354.454q.118.302.118.753a2.3 2.3 0 0 1-.068.592 1.1 1.1 0 0 1-.196.422.8.8 0 0 1-.334.252 1.3 1.3 0 0 1-.483.082h-.563zm3.743 1.763v1.591h-.79V11.85h2.548v.653H7.896v1.117h1.606v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePdf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePdf;\n"
  },
  {
    "path": "src/icons/filetype-php.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePhp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-php', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.6 11.85H0v3.999h.791v-1.342h.803q.43 0 .732-.173.305-.175.463-.474a1.4 1.4 0 0 0 .161-.677q0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.238.241.8.8 0 0 1-.375.082H.788V12.48h.66q.327 0 .512.181.185.182.185.522m4.48 2.666V11.85h-.79v1.626H4.153V11.85h-.79v3.999h.79v-1.714h1.682v1.714zm.703-3.999h1.6q.433 0 .732.179.3.175.46.477.158.302.158.677t-.161.677q-.159.299-.463.474a1.45 1.45 0 0 1-.733.173H8.12v1.342h-.791zm2.06 1.714a.8.8 0 0 0 .084-.381q0-.34-.184-.521-.184-.182-.513-.182h-.66v1.406h.66a.8.8 0 0 0 .375-.082.57.57 0 0 0 .237-.24Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePhp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePhp;\n"
  },
  {
    "path": "src/icons/filetype-png.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePng = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-png', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-3.76 8.132q.114.23.14.492h-.776a.8.8 0 0 0-.097-.249.7.7 0 0 0-.17-.19.7.7 0 0 0-.237-.126 1 1 0 0 0-.299-.044q-.427 0-.665.302-.234.301-.234.85v.498q0 .351.097.615a.9.9 0 0 0 .304.413.87.87 0 0 0 .519.146 1 1 0 0 0 .457-.096.67.67 0 0 0 .272-.264q.09-.164.091-.363v-.255H8.82v-.59h1.576v.798q0 .29-.097.55a1.3 1.3 0 0 1-.293.458 1.4 1.4 0 0 1-.495.313q-.296.111-.697.111a2 2 0 0 1-.753-.132 1.45 1.45 0 0 1-.533-.377 1.6 1.6 0 0 1-.32-.58 2.5 2.5 0 0 1-.105-.745v-.506q0-.543.2-.95.201-.406.582-.633.384-.228.926-.228.357 0 .636.1.281.1.48.275.2.176.314.407Zm-8.64-.706H0v4h.791v-1.343h.803q.43 0 .732-.172.305-.177.463-.475a1.4 1.4 0 0 0 .161-.677q0-.374-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.381.57.57 0 0 1-.238.24.8.8 0 0 1-.375.082H.788v-1.406h.66q.327 0 .512.182.185.181.185.521m1.964 2.666V13.25h.032l1.761 2.675h.656v-3.999h-.75v2.66h-.032l-1.752-2.66h-.662v4z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePng.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePng;\n"
  },
  {
    "path": "src/icons/filetype-ppt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePpt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-ppt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.6 11.85H0v3.999h.791v-1.342h.803q.43 0 .732-.173.305-.175.463-.474a1.4 1.4 0 0 0 .161-.677q0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.238.241.8.8 0 0 1-.375.082H.788V12.48h.66q.327 0 .512.181.185.183.185.522m2.817-1.333h-1.6v3.999h.791v-1.342h.803q.43 0 .732-.173.305-.175.463-.474.162-.302.161-.677 0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.238.241.8.8 0 0 1-.375.082H4.15V12.48h.66q.327 0 .512.181.185.183.185.522m2.767-.67v3.336H7.48v-3.337H6.346v-.662h3.065v.662z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePpt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePpt;\n"
  },
  {
    "path": "src/icons/filetype-pptx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePptx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-pptx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.5 11.85h1.6q.434 0 .732.179.302.175.46.477t.158.677-.16.677q-.159.299-.464.474a1.45 1.45 0 0 1-.732.173H2.29v1.342H1.5zm2.06 1.714a.8.8 0 0 0 .085-.381q0-.34-.185-.521-.185-.182-.513-.182h-.659v1.406h.66a.8.8 0 0 0 .374-.082.57.57 0 0 0 .238-.24m1.302-1.714h1.6q.434 0 .732.179.302.175.46.477t.158.677-.16.677q-.158.299-.464.474a1.45 1.45 0 0 1-.732.173h-.803v1.342h-.79zm2.06 1.714a.8.8 0 0 0 .085-.381q0-.34-.185-.521-.184-.182-.513-.182H5.65v1.406h.66a.8.8 0 0 0 .374-.082.57.57 0 0 0 .238-.24m2.852 2.285v-3.337h1.137v-.662H7.846v.662H8.98v3.337zm3.796-3.999h.893l-1.274 2.007 1.254 1.992h-.908l-.85-1.415h-.035l-.853 1.415h-.861l1.24-2.016-1.228-1.983h.931l.832 1.439h.035z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePptx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePptx;\n"
  },
  {
    "path": "src/icons/filetype-psd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePsd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-psd', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-.5v-1h.5a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.116 14.841a1.13 1.13 0 0 0 .401.823q.194.162.478.252.284.091.665.091.507 0 .858-.158.355-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.565-.21l-.621-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.188-.152.513-.152.214 0 .37.068a.6.6 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.199-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.776.15-.337.149-.528.421-.19.273-.19.639 0 .302.123.524t.351.367q.229.143.54.213l.618.144q.31.073.462.193a.39.39 0 0 1 .153.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.176 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM1.6 11.932H0v4h.791v-1.343h.803q.43 0 .732-.173.305-.175.463-.474a1.4 1.4 0 0 0 .161-.677q0-.375-.158-.677a1.2 1.2 0 0 0-.46-.477q-.3-.18-.732-.179m.545 1.333a.8.8 0 0 1-.085.38.57.57 0 0 1-.238.241.8.8 0 0 1-.375.082H.788v-1.406h.66q.327 0 .512.182.185.181.185.521m4.609 2.666v-3.999h1.459q.609 0 1.004.234.396.235.59.68.195.445.195 1.075 0 .634-.196 1.084t-.594.689q-.396.237-1 .237H6.755Zm1.353-3.354h-.562v2.707h.562q.279 0 .483-.082a.8.8 0 0 0 .334-.252 1.1 1.1 0 0 0 .197-.422q.067-.252.067-.592a2.1 2.1 0 0 0-.117-.753.9.9 0 0 0-.355-.454q-.236-.152-.609-.152\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePsd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePsd;\n"
  },
  {
    "path": "src/icons/filetype-py.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypePy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-py', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H7v-1h5a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM0 11.85h1.6q.434 0 .732.179.302.175.46.477t.158.677-.16.677q-.158.299-.464.474a1.45 1.45 0 0 1-.732.173H.79v1.342H0zm2.06 1.714a.8.8 0 0 0 .085-.381q0-.34-.185-.521-.185-.182-.513-.182H.788v1.406h.66a.8.8 0 0 0 .374-.082.57.57 0 0 0 .238-.24m2.963.75v1.535H4.23v-1.52L2.89 11.85h.876l.853 1.696h.032l.856-1.696h.855z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypePy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypePy;\n"
  },
  {
    "path": "src/icons/filetype-raw.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeRaw = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-raw', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.597 11.85H0v3.999h.782v-1.491h.71l.7 1.491h1.651l.313-1.028h1.336l.314 1.028h.84L5.31 11.85h-.925l-1.329 3.96-.783-1.572A1.18 1.18 0 0 0 3 13.116q0-.384-.167-.668a1.1 1.1 0 0 0-.478-.44 1.7 1.7 0 0 0-.758-.158m-.815 1.913v-1.292h.7a.74.74 0 0 1 .507.17q.194.17.194.49 0 .315-.194.474-.19.158-.518.158zm4.063-1.148.489 1.617H4.32l.49-1.617zm4.006.445-.74 2.789h-.73L6.326 11.85h.855l.601 2.903h.038l.706-2.903h.683l.706 2.903h.04l.596-2.903h.858l-1.055 3.999h-.73l-.74-2.789H8.85Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeRaw.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeRaw;\n"
  },
  {
    "path": "src/icons/filetype-rb.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeRb = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-rb', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H8v-1h4a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM0 11.85h1.597q.446 0 .758.158.315.155.478.44.167.284.167.668a1.18 1.18 0 0 1-.727 1.122l.803 1.611h-.885l-.7-1.491H.782v1.491H0zm.782.621v1.292h.689q.327 0 .518-.158.195-.159.194-.475 0-.32-.194-.489a.74.74 0 0 0-.507-.17zm4.426 3.378H3.544V11.85h1.67q.536 0 .858.26.322.262.322.724a.94.94 0 0 1-.09.422.8.8 0 0 1-.244.293 1 1 0 0 1-.351.161v.035q.243.024.445.141a.85.85 0 0 1 .322.325 1 1 0 0 1 .123.51q0 .357-.178.61-.18.25-.492.386a1.9 1.9 0 0 1-.721.132m-.179-3.404h-.7v1.07h.521q.267 0 .434-.065a.5.5 0 0 0 .249-.185.5.5 0 0 0 .082-.296.49.49 0 0 0-.155-.384q-.153-.14-.43-.14Zm.05 1.62h-.75v1.19h.589q.466 0 .67-.147a.5.5 0 0 0 .206-.434.6.6 0 0 0-.082-.325.5.5 0 0 0-.24-.21.95.95 0 0 0-.393-.074\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeRb.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeRb;\n"
  },
  {
    "path": "src/icons/filetype-sass.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeSass = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-sass', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.41 15.29a1.2 1.2 0 0 1-.111-.449h.764a.58.58 0 0 0 .255.384.8.8 0 0 0 .25.114q.142.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .084-.29.39.39 0 0 0-.152-.326q-.152-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.352-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.192-.272.528-.422.338-.15.777-.149.456 0 .779.152.326.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.246-.181.9.9 0 0 0-.37-.068q-.324 0-.512.152a.47.47 0 0 0-.185.384q0 .18.144.3a1 1 0 0 0 .404.175l.621.143q.326.075.566.211t.375.358.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375m4.188-.387-.313 1.028h-.8l1.342-3.999h.926l1.335 4h-.84l-.314-1.03zm1.178-.59-.49-1.616h-.034l-.49 1.617zm1.352.528a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.123.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zm3.503.449a1.2 1.2 0 0 1-.111-.449h.764a.58.58 0 0 0 .255.384q.105.073.25.114.142.041.319.041.245 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.152-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.527-.422.338-.15.777-.149.456 0 .779.152.326.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.246-.181.9.9 0 0 0-.37-.068q-.324 0-.512.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .404.175l.621.143q.326.075.566.211t.375.358.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158a2.2 2.2 0 0 1-.665-.09 1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeSass.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeSass;\n"
  },
  {
    "path": "src/icons/filetype-scss.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeScss = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-scss', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.356 15.29a1.2 1.2 0 0 1-.111-.449h.765a.58.58 0 0 0 .255.384q.105.073.249.114.143.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.151-.12-.462-.193l-.619-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.528-.422.336-.15.776-.149.457 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.247-.181.9.9 0 0 0-.369-.068q-.325 0-.513.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .405.175l.62.143q.326.075.566.211t.375.358.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375m4.274-2.23a1.7 1.7 0 0 0-.103.633v.495q0 .369.103.627a.83.83 0 0 0 .298.392.85.85 0 0 0 .478.132.9.9 0 0 0 .401-.088.7.7 0 0 0 .273-.249.8.8 0 0 0 .117-.363h.765v.076a1.27 1.27 0 0 1-.226.674 1.4 1.4 0 0 1-.55.454 1.8 1.8 0 0 1-.786.164q-.54 0-.914-.217a1.4 1.4 0 0 1-.571-.626q-.195-.408-.194-.976v-.498q0-.569.197-.979a1.44 1.44 0 0 1 .57-.633q.38-.222.912-.222.328 0 .607.097.28.093.489.272a1.32 1.32 0 0 1 .466.964v.073h-.765a.85.85 0 0 0-.12-.38.7.7 0 0 0-.273-.261.8.8 0 0 0-.398-.097.8.8 0 0 0-.475.138.87.87 0 0 0-.301.398m2.609 1.781a1.13 1.13 0 0 0 .401.823q.193.162.478.252.284.091.665.091.507 0 .858-.158.354-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.62-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.188-.152.513-.152.213 0 .369.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.438 0-.776.15-.336.149-.527.421-.19.273-.19.639 0 .302.123.524t.351.367q.228.143.54.213l.617.144q.311.073.463.193a.39.39 0 0 1 .153.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193 1.1 1.1 0 0 1-.413.07q-.177 0-.32-.04a.8.8 0 0 1-.249-.115.58.58 0 0 1-.255-.384zm3.502.449a1.2 1.2 0 0 1-.11-.449h.764a.58.58 0 0 0 .255.384q.105.073.249.114.143.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.152-.326q-.153-.12-.463-.193l-.618-.143a1.7 1.7 0 0 1-.54-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.528-.422.336-.15.776-.149.458 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.247-.181.9.9 0 0 0-.369-.068q-.325 0-.512.152a.47.47 0 0 0-.185.384q0 .18.143.3a1 1 0 0 0 .405.175l.62.143q.326.075.566.211t.375.358.135.56q0 .37-.187.656a1.2 1.2 0 0 1-.54.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeScss.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeScss;\n"
  },
  {
    "path": "src/icons/filetype-sh.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeSh = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-sh', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2H8v-1h4a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM.111 15.29A1.2 1.2 0 0 1 0 14.84h.765a.58.58 0 0 0 .255.384q.105.073.249.114.143.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.151-.12-.462-.193l-.619-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.528-.422.336-.15.776-.149.457 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.247-.181.9.9 0 0 0-.369-.068q-.326 0-.513.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .405.175l.62.143q.327.075.566.211.24.136.375.358t.135.56q0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375Zm6.67-3.358v4h-.79v-1.715H4.308v1.714h-.792v-3.999h.792v1.626H5.99v-1.626z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeSh.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeSh;\n"
  },
  {
    "path": "src/icons/filetype-sql.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeSql = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-sql', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM0 14.841a1.13 1.13 0 0 0 .401.823q.194.162.478.252c.284.09.411.091.665.091q.507 0 .858-.158.355-.159.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.565-.21l-.621-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.187-.152.513-.152.214 0 .37.068a.6.6 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.199-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.776.15-.337.149-.528.421-.19.273-.19.639 0 .302.123.524t.351.367q.229.143.54.213l.618.144q.31.073.462.193a.39.39 0 0 1 .153.325q0 .165-.085.29A.56.56 0 0 1 2 15.31q-.167.07-.413.07-.176 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zm6.878 1.489-.507-.739q.264-.243.401-.6.138-.358.138-.806v-.501q0-.556-.208-.967a1.5 1.5 0 0 0-.589-.636q-.383-.225-.917-.225-.527 0-.914.225-.384.223-.592.636a2.14 2.14 0 0 0-.205.967v.5q0 .554.205.965.208.41.592.636a1.8 1.8 0 0 0 .914.222 1.8 1.8 0 0 0 .6-.1l.294.422h.788ZM4.262 14.2v-.522q0-.369.114-.63a.9.9 0 0 1 .325-.398.9.9 0 0 1 .495-.138q.288 0 .495.138a.9.9 0 0 1 .325.398q.115.261.115.63v.522q0 .246-.053.445-.053.196-.155.34l-.106-.14-.105-.147h-.733l.451.65a.6.6 0 0 1-.251.047.87.87 0 0 1-.487-.147.9.9 0 0 1-.32-.404 1.7 1.7 0 0 1-.11-.644m3.986 1.057h1.696v.674H7.457v-3.999h.79z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeSql.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeSql;\n"
  },
  {
    "path": "src/icons/filetype-svg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeSvg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-svg', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM0 14.841a1.13 1.13 0 0 0 .401.823q.194.162.478.252.285.091.665.091.507 0 .858-.158.355-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.565-.21l-.621-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.187-.152.513-.152.214 0 .37.068a.6.6 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.199-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.776.15-.337.149-.528.421-.19.273-.19.639 0 .302.123.524t.351.367q.229.143.54.213l.618.144q.31.073.462.193a.39.39 0 0 1 .153.326.5.5 0 0 1-.085.29.56.56 0 0 1-.256.193q-.167.07-.413.07-.176 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zm4.575 1.09h.952l1.327-3.999h-.879l-.887 3.138H5.05l-.897-3.138h-.917zm5.483-3.293q.114.228.14.492h-.776a.8.8 0 0 0-.096-.249.7.7 0 0 0-.17-.19.7.7 0 0 0-.237-.126 1 1 0 0 0-.3-.044q-.427 0-.664.302-.235.3-.235.85v.497q0 .352.097.616a.9.9 0 0 0 .305.413.87.87 0 0 0 .518.146 1 1 0 0 0 .457-.097.67.67 0 0 0 .273-.263q.09-.164.09-.364v-.254h-.823v-.59h1.576v.798q0 .29-.096.55a1.3 1.3 0 0 1-.293.457 1.4 1.4 0 0 1-.495.314q-.296.111-.698.111a2 2 0 0 1-.752-.132 1.45 1.45 0 0 1-.534-.377 1.6 1.6 0 0 1-.319-.58 2.5 2.5 0 0 1-.105-.745v-.507q0-.54.199-.949.202-.406.583-.633.383-.228.926-.228.357 0 .635.1.282.1.48.275.2.176.314.407\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeSvg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeSvg;\n"
  },
  {
    "path": "src/icons/filetype-tiff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeTiff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-tiff', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.928 12.512v3.337h-.794v-3.337H0v-.662h3.064v.662zm2.131-.662v3.999h-.79V11.85zm1.373 3.999v-1.59h1.606v-.64H5.432v-1.116H7.19v-.653H4.641v3.999zm2.868-1.59v1.59h-.791V11.85h2.548v.653H8.3v1.117h1.605v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeTiff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeTiff;\n"
  },
  {
    "path": "src/icons/filetype-tsx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeTsx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-tsx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.172 14.841a1.13 1.13 0 0 0 .401.823q.193.162.478.252.283.091.665.091.507 0 .858-.158.354-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.62-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.513-.152.213 0 .369.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.438 0-.776.15-.336.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.54.213l.617.144q.311.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.084.29.56.56 0 0 1-.255.193 1.1 1.1 0 0 1-.413.07q-.177 0-.32-.04a.8.8 0 0 1-.249-.115.58.58 0 0 1-.255-.384zm-1.244 1.09v-3.337h1.136v-.662H0v.662h1.134v3.337zm7.076-3.999h.893l-1.274 2.007 1.254 1.992h-.909l-.85-1.415h-.034l-.853 1.415H6.37l1.239-2.016-1.228-1.983h.932l.832 1.438h.035z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeTsx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeTsx;\n"
  },
  {
    "path": "src/icons/filetype-ttf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeTtf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-ttf', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-2v-1h2a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.928 15.849v-3.337h2.269v3.337h.794v-3.337h1.137v-.662H0v.662h1.134v3.337zm5.315-1.59v1.59h-.791V11.85H9v.653H7.243v1.117h1.605v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeTtf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeTtf;\n"
  },
  {
    "path": "src/icons/filetype-txt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeTxt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-txt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-2v-1h2a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.928 15.849v-3.337h1.136v-.662H0v.662h1.134v3.337zm4.689-3.999h-.894L4.9 13.289h-.035l-.832-1.439h-.932l1.228 1.983-1.24 2.016h.862l.853-1.415h.035l.85 1.415h.907l-1.253-1.992zm1.93.662v3.337h-.794v-3.337H6.619v-.662h3.064v.662H8.546Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeTxt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeTxt;\n"
  },
  {
    "path": "src/icons/filetype-wav.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeWav = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-wav', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM1.784 15.849l.741-2.789h.033l.74 2.789h.73l1.055-3.999h-.858l-.595 2.903h-.041l-.706-2.903H2.2l-.706 2.903h-.038l-.6-2.903H0l1.055 3.999zm3.715 0 .314-1.028h1.336l.313 1.028h.841L6.967 11.85h-.926L4.7 15.849h.8Zm1.002-3.234.49 1.617H5.977l.49-1.617H6.5Zm3.604 3.234h-.952L7.814 11.85h.917l.897 3.138h.038l.888-3.138h.879z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeWav.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeWav;\n"
  },
  {
    "path": "src/icons/filetype-woff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeWoff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-woff', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zm-5.464 9.688v-.522q0-.386-.117-.641a.86.86 0 0 0-.323-.387.86.86 0 0 0-.468-.129.87.87 0 0 0-.472.13.87.87 0 0 0-.32.386q-.116.255-.116.641v.522q0 .384.117.641a.87.87 0 0 0 .319.387.9.9 0 0 0 .472.126.9.9 0 0 0 .468-.126.86.86 0 0 0 .323-.386 1.55 1.55 0 0 0 .117-.642m.803-.516v.513q0 .563-.205.973-.205.406-.59.627-.38.216-.916.216-.534 0-.92-.216a1.46 1.46 0 0 1-.59-.627 2.15 2.15 0 0 1-.204-.973v-.513q0-.569.205-.975.205-.411.589-.627.386-.22.92-.22.536 0 .917.22.384.219.589.63.204.406.205.972m-6.064-.536-.74 2.79h-.73l-1.055-4h.855l.601 2.903h.038l.706-2.903h.683l.706 2.903h.04l.596-2.903h.858l-1.055 4h-.73l-.74-2.79zm7.398 2.79v-1.592h1.606v-.638h-1.606v-1.117h1.758v-.653H9.882v4zm2.988-1.592v1.591h-.791v-3.999h2.548v.653h-1.757v1.117h1.605v.638z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeWoff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeWoff;\n"
  },
  {
    "path": "src/icons/filetype-xls.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeXls = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-xls', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM6.472 15.29a1.2 1.2 0 0 1-.111-.449h.765a.58.58 0 0 0 .254.384q.106.073.25.114.143.041.319.041.246 0 .413-.07a.56.56 0 0 0 .255-.193.5.5 0 0 0 .085-.29.39.39 0 0 0-.153-.326q-.152-.12-.462-.193l-.619-.143a1.7 1.7 0 0 1-.539-.214 1 1 0 0 1-.351-.367 1.1 1.1 0 0 1-.123-.524q0-.366.19-.639.19-.272.527-.422.338-.15.777-.149.457 0 .78.152.324.153.5.41.18.255.2.566h-.75a.56.56 0 0 0-.12-.258.6.6 0 0 0-.247-.181.9.9 0 0 0-.369-.068q-.325 0-.513.152a.47.47 0 0 0-.184.384q0 .18.143.3a1 1 0 0 0 .405.175l.62.143q.326.075.566.211a1 1 0 0 1 .375.358q.135.222.135.56 0 .37-.188.656a1.2 1.2 0 0 1-.539.439q-.351.158-.858.158-.381 0-.665-.09a1.4 1.4 0 0 1-.478-.252 1.1 1.1 0 0 1-.29-.375m-2.945-3.358h-.893L1.81 13.37h-.036l-.832-1.438h-.93l1.227 1.983L0 15.931h.861l.853-1.415h.035l.85 1.415h.908L2.253 13.94zm2.727 3.325H4.557v-3.325h-.79v4h2.487z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeXls.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeXls;\n"
  },
  {
    "path": "src/icons/filetype-xlsx.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeXlsx = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-xlsx', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM7.86 14.841a1.13 1.13 0 0 0 .401.823q.195.162.479.252.284.091.665.091.507 0 .858-.158.355-.158.54-.44a1.17 1.17 0 0 0 .187-.656q0-.336-.135-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.565-.21l-.621-.144a1 1 0 0 1-.405-.176.37.37 0 0 1-.143-.299q0-.234.184-.384.188-.152.513-.152.214 0 .37.068a.6.6 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.199-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.44 0-.777.15-.336.149-.527.421-.19.273-.19.639 0 .302.123.524t.351.367q.229.143.54.213l.618.144q.31.073.462.193a.39.39 0 0 1 .153.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.168.07-.413.07-.176 0-.32-.04a.8.8 0 0 1-.249-.115.58.58 0 0 1-.255-.384zm-3.726-2.909h.893l-1.274 2.007 1.254 1.992h-.908l-.85-1.415h-.035l-.853 1.415H1.5l1.24-2.016-1.228-1.983h.931l.832 1.438h.036zm1.923 3.325h1.697v.674H5.266v-3.999h.791zm7.636-3.325h.893l-1.274 2.007 1.254 1.992h-.908l-.85-1.415h-.035l-.853 1.415h-.861l1.24-2.016-1.228-1.983h.931l.832 1.438h.036z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeXlsx.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeXlsx;\n"
  },
  {
    "path": "src/icons/filetype-xml.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeXml = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-xml', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.527 11.85h-.893l-.823 1.439h-.036L.943 11.85H.012l1.227 1.983L0 15.85h.861l.853-1.415h.035l.85 1.415h.908l-1.254-1.992zm.954 3.999v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596h-.025L4.58 11.85h-.806v3.999zm4.71-.674h1.696v.674H8.4V11.85h.791z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeXml.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeXml;\n"
  },
  {
    "path": "src/icons/filetype-yml.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FiletypeYml = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filetype-yml', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM2.133 15.849v-1.535l1.339-2.464h-.856l-.855 1.696h-.032L.876 11.85H0l1.339 2.479v1.52zm2.287 0v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596H5.66L4.52 11.85h-.805v3.999zm4.71-.674h1.696v.674H8.338V11.85h.791v3.325Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nFiletypeYml.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FiletypeYml;\n"
  },
  {
    "path": "src/icons/film.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Film = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-film', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm4 0v6h8V1zm8 8H4v6h8zM1 1v2h2V1zm2 3H1v2h2zM1 7v2h2V7zm2 3H1v2h2zm-2 3v2h2v-2zM15 1h-2v2h2zm-2 3v2h2V4zm2 3h-2v2h2zm-2 3v2h2v-2zm2 3h-2v2h2z\" />\n      </svg>\n    );\n  },\n);\n\nFilm.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Film;\n"
  },
  {
    "path": "src/icons/filter-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M3.5 5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1M5 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m2 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterCircleFill;\n"
  },
  {
    "path": "src/icons/filter-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M7 11.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterCircle;\n"
  },
  {
    "path": "src/icons/filter-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterLeft;\n"
  },
  {
    "path": "src/icons/filter-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 10.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5m0-3a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0 0 1h7a.5.5 0 0 0 .5-.5m0-3a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0 0 1h11a.5.5 0 0 0 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterRight;\n"
  },
  {
    "path": "src/icons/filter-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm.5 5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1M4 8.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m2 3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterSquareFill;\n"
  },
  {
    "path": "src/icons/filter-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FilterSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilterSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FilterSquare;\n"
  },
  {
    "path": "src/icons/filter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Filter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-filter', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFilter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Filter;\n"
  },
  {
    "path": "src/icons/fingerprint.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Fingerprint = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fingerprint', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.06 6.5a.5.5 0 0 1 .5.5v.776a11.5 11.5 0 0 1-.552 3.519l-1.331 4.14a.5.5 0 0 1-.952-.305l1.33-4.141a10.5 10.5 0 0 0 .504-3.213V7a.5.5 0 0 1 .5-.5Z\" />\n        <path d=\"M6.06 7a2 2 0 1 1 4 0 .5.5 0 1 1-1 0 1 1 0 1 0-2 0v.332q0 .613-.066 1.221A.5.5 0 0 1 6 8.447q.06-.555.06-1.115zm3.509 1a.5.5 0 0 1 .487.513 11.5 11.5 0 0 1-.587 3.339l-1.266 3.8a.5.5 0 0 1-.949-.317l1.267-3.8a10.5 10.5 0 0 0 .535-3.048A.5.5 0 0 1 9.569 8m-3.356 2.115a.5.5 0 0 1 .33.626L5.24 14.939a.5.5 0 1 1-.955-.296l1.303-4.199a.5.5 0 0 1 .625-.329\" />\n        <path d=\"M4.759 5.833A3.501 3.501 0 0 1 11.559 7a.5.5 0 0 1-1 0 2.5 2.5 0 0 0-4.857-.833.5.5 0 1 1-.943-.334m.3 1.67a.5.5 0 0 1 .449.546 10.7 10.7 0 0 1-.4 2.031l-1.222 4.072a.5.5 0 1 1-.958-.287L4.15 9.793a9.7 9.7 0 0 0 .363-1.842.5.5 0 0 1 .546-.449Zm6 .647a.5.5 0 0 1 .5.5c0 1.28-.213 2.552-.632 3.762l-1.09 3.145a.5.5 0 0 1-.944-.327l1.089-3.145c.382-1.105.578-2.266.578-3.435a.5.5 0 0 1 .5-.5Z\" />\n        <path d=\"M3.902 4.222a5 5 0 0 1 5.202-2.113.5.5 0 0 1-.208.979 4 4 0 0 0-4.163 1.69.5.5 0 0 1-.831-.556m6.72-.955a.5.5 0 0 1 .705-.052A4.99 4.99 0 0 1 13.059 7v1.5a.5.5 0 1 1-1 0V7a3.99 3.99 0 0 0-1.386-3.028.5.5 0 0 1-.051-.705M3.68 5.842a.5.5 0 0 1 .422.568q-.044.289-.044.59c0 .71-.1 1.417-.298 2.1l-1.14 3.923a.5.5 0 1 1-.96-.279L2.8 8.821A6.5 6.5 0 0 0 3.058 7q0-.375.054-.736a.5.5 0 0 1 .568-.422m8.882 3.66a.5.5 0 0 1 .456.54c-.084 1-.298 1.986-.64 2.934l-.744 2.068a.5.5 0 0 1-.941-.338l.745-2.07a10.5 10.5 0 0 0 .584-2.678.5.5 0 0 1 .54-.456\" />\n        <path d=\"M4.81 1.37A6.5 6.5 0 0 1 14.56 7a.5.5 0 1 1-1 0 5.5 5.5 0 0 0-8.25-4.765.5.5 0 0 1-.5-.865m-.89 1.257a.5.5 0 0 1 .04.706A5.48 5.48 0 0 0 2.56 7a.5.5 0 0 1-1 0c0-1.664.626-3.184 1.655-4.333a.5.5 0 0 1 .706-.04ZM1.915 8.02a.5.5 0 0 1 .346.616l-.779 2.767a.5.5 0 1 1-.962-.27l.778-2.767a.5.5 0 0 1 .617-.346m12.15.481a.5.5 0 0 1 .49.51c-.03 1.499-.161 3.025-.727 4.533l-.07.187a.5.5 0 0 1-.936-.351l.07-.187c.506-1.35.634-2.74.663-4.202a.5.5 0 0 1 .51-.49\" />\n      </svg>\n    );\n  },\n);\n\nFingerprint.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Fingerprint;\n"
  },
  {
    "path": "src/icons/fire.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Fire = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fire', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16c3.314 0 6-2 6-5.5 0-1.5-.5-4-2.5-6 .25 1.5-1.25 2-1.25 2C11 4 9 .5 6 0c.357 2 .5 4-2 6-1.25 1-2 2.729-2 4.5C2 14 4.686 16 8 16m0-1c-1.657 0-3-1-3-2.75 0-.75.25-2 1.25-3C6.125 10 7 10.5 7 10.5c-.375-1.25.5-3.25 2-3.5-.179 1-.25 2 1 3 .625.5 1 1.364 1 2.25C11 14 9.657 15 8 15\" />\n      </svg>\n    );\n  },\n);\n\nFire.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Fire;\n"
  },
  {
    "path": "src/icons/flag-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FlagFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flag-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12 12 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A20 20 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a20 20 0 0 0 1.349-.476l.019-.007.004-.002h.001\" />\n      </svg>\n    );\n  },\n);\n\nFlagFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FlagFill;\n"
  },
  {
    "path": "src/icons/flag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Flag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flag', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12 12 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A20 20 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a20 20 0 0 0 1.349-.476l.019-.007.004-.002h.001M14 1.221c-.22.078-.48.167-.766.255-.81.252-1.872.523-2.734.523-.886 0-1.592-.286-2.203-.534l-.008-.003C7.662 1.21 7.139 1 6.5 1c-.669 0-1.606.229-2.415.478A21 21 0 0 0 3 1.845v6.433c.22-.078.48-.167.766-.255C4.576 7.77 5.638 7.5 6.5 7.5c.847 0 1.548.28 2.158.525l.028.01C9.32 8.29 9.86 8.5 10.5 8.5c.668 0 1.606-.229 2.415-.478A21 21 0 0 0 14 7.655V1.222z\" />\n      </svg>\n    );\n  },\n);\n\nFlag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Flag;\n"
  },
  {
    "path": "src/icons/flask-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FlaskFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flask-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 0a.5.5 0 0 1 0 1H11v5.358l4.497 7.36c.099.162.16.332.192.503l.013.063.008.083q.006.053.007.107l-.003.09q-.001.047-.005.095-.006.053-.017.106l-.016.079q-.012.049-.028.096l-.028.086a1.5 1.5 0 0 1-.17.322 1.5 1.5 0 0 1-.395.394q-.04.028-.082.054-.045.026-.095.049l-.073.035-.09.033q-.05.02-.103.034-.04.01-.08.017-.053.012-.108.021l-.006.002-.202.013H1.783l-.214-.015a1.503 1.503 0 0 1-1.066-2.268L5 6.359V1h-.5a.499.499 0 0 1-.354-.854A.5.5 0 0 1 4.5 0zm.5 12a.5.5 0 0 0 0 1h1.885l-.61-1zm-1-2a.5.5 0 0 0 0 1h1.664l-.612-1zm-1-2a.5.5 0 0 0 0 1h1.441l-.61-1zM9 6a.5.5 0 0 0 0 1h1.22l-.147-.24A.5.5 0 0 1 10 6.5V6zm0-2a.5.5 0 0 0 0 1h1V4zm0-2a.5.5 0 0 0 0 1h1V2z\" />\n      </svg>\n    );\n  },\n);\n\nFlaskFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FlaskFill;\n"
  },
  {
    "path": "src/icons/flask-florence-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FlaskFlorenceFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flask-florence-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m10.5 0 .1.01a.5.5 0 0 1-.1.99H10v5.417c.517.226.986.538 1.394.916l.043.038.14.14a6 6 0 0 1 .303.34l.101.128q.045.06.088.122a5 5 0 0 1 .26.4l.066.12a5 5 0 0 1 .16.32q.029.062.053.124.035.08.067.163.115.3.19.62l.024.111a5 5 0 0 1 .096.68Q13 10.82 13 11l-.007.257A5 5 0 0 1 8 16l-.257-.007A5 5 0 0 1 6 6.417V1h-.5a.5.5 0 0 1 0-1zM8 6a.5.5 0 0 0 0 1h1.065A.5.5 0 0 1 9 6.756V6zm0-2a.5.5 0 0 0 0 1h1V4zm0-2a.5.5 0 0 0 0 1h1V2z\" />\n      </svg>\n    );\n  },\n);\n\nFlaskFlorenceFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FlaskFlorenceFill;\n"
  },
  {
    "path": "src/icons/flask-florence.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FlaskFlorence = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flask-florence', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 0a.5.5 0 0 0 0 1H6v5.416a5 5 0 1 0 4 0V1h.5a.5.5 0 0 0 0-1zM9 2h-.5a.5.5 0 0 0 0 1H9v1h-.5a.5.5 0 0 0 0 1H9v1h-.5a.5.5 0 0 0 0 1h.564a.5.5 0 0 0 .27.227A4.002 4.002 0 0 1 8 15a4 4 0 0 1-1.333-7.773.5.5 0 0 0 .333-.47V1h2z\" />\n      </svg>\n    );\n  },\n);\n\nFlaskFlorence.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FlaskFlorence;\n"
  },
  {
    "path": "src/icons/flask.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Flask = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flask', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 0a.5.5 0 0 0 0 1H5v5.36L.503 13.717A1.5 1.5 0 0 0 1.783 16h12.434a1.5 1.5 0 0 0 1.28-2.282L11 6.359V1h.5a.5.5 0 0 0 0-1zM10 2H9a.5.5 0 0 0 0 1h1v1H9a.5.5 0 0 0 0 1h1v1H9a.5.5 0 0 0 0 1h1.22l.61 1H10a.5.5 0 1 0 0 1h1.442l.611 1H11a.5.5 0 1 0 0 1h1.664l.611 1H12a.5.5 0 1 0 0 1h1.886l.758 1.24a.5.5 0 0 1-.427.76H1.783a.5.5 0 0 1-.427-.76l4.57-7.48A.5.5 0 0 0 6 6.5V1h4z\" />\n      </svg>\n    );\n  },\n);\n\nFlask.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Flask;\n"
  },
  {
    "path": "src/icons/floppy-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FloppyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-floppy-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0H3v5.5A1.5 1.5 0 0 0 4.5 7h7A1.5 1.5 0 0 0 13 5.5V0h.086a1.5 1.5 0 0 1 1.06.44l1.415 1.414A1.5 1.5 0 0 1 16 2.914V14.5a1.5 1.5 0 0 1-1.5 1.5H14v-5.5A1.5 1.5 0 0 0 12.5 9h-9A1.5 1.5 0 0 0 2 10.5V16h-.5A1.5 1.5 0 0 1 0 14.5z\" />\n        <path d=\"M3 16h10v-5.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5zm9-16H4v5.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5zM9 1h2v4H9z\" />\n      </svg>\n    );\n  },\n);\n\nFloppyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FloppyFill;\n"
  },
  {
    "path": "src/icons/floppy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Floppy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-floppy', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 2H9v3h2z\" />\n        <path d=\"M1.5 0h11.586a1.5 1.5 0 0 1 1.06.44l1.415 1.414A1.5 1.5 0 0 1 16 2.914V14.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5v-13A1.5 1.5 0 0 1 1.5 0M1 1.5v13a.5.5 0 0 0 .5.5H2v-4.5A1.5 1.5 0 0 1 3.5 9h9a1.5 1.5 0 0 1 1.5 1.5V15h.5a.5.5 0 0 0 .5-.5V2.914a.5.5 0 0 0-.146-.353l-1.415-1.415A.5.5 0 0 0 13.086 1H13v4.5A1.5 1.5 0 0 1 11.5 7h-7A1.5 1.5 0 0 1 3 5.5V1H1.5a.5.5 0 0 0-.5.5m3 4a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V1H4zM3 15h10v-4.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nFloppy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Floppy;\n"
  },
  {
    "path": "src/icons/floppy2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Floppy2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-floppy2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 2h-2v3h2z\" />\n        <path d=\"M1.5 0A1.5 1.5 0 0 0 0 1.5v13A1.5 1.5 0 0 0 1.5 16h13a1.5 1.5 0 0 0 1.5-1.5V2.914a1.5 1.5 0 0 0-.44-1.06L14.147.439A1.5 1.5 0 0 0 13.086 0zM4 6a1 1 0 0 1-1-1V1h10v4a1 1 0 0 1-1 1zM3 9h10a1 1 0 0 1 1 1v5H2v-5a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nFloppy2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Floppy2Fill;\n"
  },
  {
    "path": "src/icons/floppy2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Floppy2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-floppy2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 0h11.586a1.5 1.5 0 0 1 1.06.44l1.415 1.414A1.5 1.5 0 0 1 16 2.914V14.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5v-13A1.5 1.5 0 0 1 1.5 0M1 1.5v13a.5.5 0 0 0 .5.5H2v-4.5A1.5 1.5 0 0 1 3.5 9h9a1.5 1.5 0 0 1 1.5 1.5V15h.5a.5.5 0 0 0 .5-.5V2.914a.5.5 0 0 0-.146-.353l-1.415-1.415A.5.5 0 0 0 13.086 1H13v3.5A1.5 1.5 0 0 1 11.5 6h-7A1.5 1.5 0 0 1 3 4.5V1H1.5a.5.5 0 0 0-.5.5m9.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nFloppy2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Floppy2;\n"
  },
  {
    "path": "src/icons/flower1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Flower1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flower1', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.174 1.184a2 2 0 0 1 3.652 0A2 2 0 0 1 12.99 3.01a2 2 0 0 1 1.826 3.164 2 2 0 0 1 0 3.652 2 2 0 0 1-1.826 3.164 2 2 0 0 1-3.164 1.826 2 2 0 0 1-3.652 0A2 2 0 0 1 3.01 12.99a2 2 0 0 1-1.826-3.164 2 2 0 0 1 0-3.652A2 2 0 0 1 3.01 3.01a2 2 0 0 1 3.164-1.826M8 1a1 1 0 0 0-.998 1.03l.01.091q.017.116.054.296c.049.241.122.542.213.887.182.688.428 1.513.676 2.314L8 5.762l.045-.144c.248-.8.494-1.626.676-2.314.091-.345.164-.646.213-.887a5 5 0 0 0 .064-.386L9 2a1 1 0 0 0-1-1M2 9l.03-.002.091-.01a5 5 0 0 0 .296-.054c.241-.049.542-.122.887-.213a61 61 0 0 0 2.314-.676L5.762 8l-.144-.045a61 61 0 0 0-2.314-.676 17 17 0 0 0-.887-.213 5 5 0 0 0-.386-.064L2 7a1 1 0 1 0 0 2m7 5-.002-.03a5 5 0 0 0-.064-.386 16 16 0 0 0-.213-.888 61 61 0 0 0-.676-2.314L8 10.238l-.045.144c-.248.8-.494 1.626-.676 2.314-.091.345-.164.646-.213.887a5 5 0 0 0-.064.386L7 14a1 1 0 1 0 2 0m-5.696-2.134.025-.017a5 5 0 0 0 .303-.248c.184-.164.408-.377.661-.629A61 61 0 0 0 5.96 9.23l.103-.111-.147.033a61 61 0 0 0-2.343.572c-.344.093-.64.18-.874.258a5 5 0 0 0-.367.138l-.027.014a1 1 0 1 0 1 1.732zM4.5 14.062a1 1 0 0 0 1.366-.366l.014-.027q.014-.03.036-.084a5 5 0 0 0 .102-.283c.078-.233.165-.53.258-.874a61 61 0 0 0 .572-2.343l.033-.147-.11.102a61 61 0 0 0-1.743 1.667 17 17 0 0 0-.629.66 5 5 0 0 0-.248.304l-.017.025a1 1 0 0 0 .366 1.366m9.196-8.196a1 1 0 0 0-1-1.732l-.025.017a5 5 0 0 0-.303.248 17 17 0 0 0-.661.629A61 61 0 0 0 10.04 6.77l-.102.111.147-.033a61 61 0 0 0 2.342-.572c.345-.093.642-.18.875-.258a5 5 0 0 0 .367-.138zM11.5 1.938a1 1 0 0 0-1.366.366l-.014.027q-.014.03-.036.084a5 5 0 0 0-.102.283c-.078.233-.165.53-.258.875a61 61 0 0 0-.572 2.342l-.033.147.11-.102a61 61 0 0 0 1.743-1.667c.252-.253.465-.477.629-.66a5 5 0 0 0 .248-.304l.017-.025a1 1 0 0 0-.366-1.366M14 9a1 1 0 0 0 0-2l-.03.002a5 5 0 0 0-.386.064c-.242.049-.543.122-.888.213-.688.182-1.513.428-2.314.676L10.238 8l.144.045c.8.248 1.626.494 2.314.676.345.091.646.164.887.213a5 5 0 0 0 .386.064zM1.938 4.5a1 1 0 0 0 .393 1.38l.084.035q.108.045.283.103c.233.078.53.165.874.258a61 61 0 0 0 2.343.572l.147.033-.103-.111a61 61 0 0 0-1.666-1.742 17 17 0 0 0-.66-.629 5 5 0 0 0-.304-.248l-.025-.017a1 1 0 0 0-1.366.366m2.196-1.196.017.025a5 5 0 0 0 .248.303c.164.184.377.408.629.661A61 61 0 0 0 6.77 5.96l.111.102-.033-.147a61 61 0 0 0-.572-2.342c-.093-.345-.18-.642-.258-.875a5 5 0 0 0-.138-.367l-.014-.027a1 1 0 1 0-1.732 1m9.928 8.196a1 1 0 0 0-.366-1.366l-.027-.014a5 5 0 0 0-.367-.138c-.233-.078-.53-.165-.875-.258a61 61 0 0 0-2.342-.572l-.147-.033.102.111a61 61 0 0 0 1.667 1.742c.253.252.477.465.66.629a5 5 0 0 0 .304.248l.025.017a1 1 0 0 0 1.366-.366m-3.928 2.196a1 1 0 0 0 1.732-1l-.017-.025a5 5 0 0 0-.248-.303 17 17 0 0 0-.629-.661A61 61 0 0 0 9.23 10.04l-.111-.102.033.147a61 61 0 0 0 .572 2.342c.093.345.18.642.258.875a5 5 0 0 0 .138.367zM8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n      </svg>\n    );\n  },\n);\n\nFlower1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Flower1;\n"
  },
  {
    "path": "src/icons/flower2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Flower2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flower2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a4 4 0 0 0 4-4 4 4 0 0 0 0-8 4 4 0 0 0-8 0 4 4 0 1 0 0 8 4 4 0 0 0 4 4m3-12q0 .11-.03.247c-.544.241-1.091.638-1.598 1.084A3 3 0 0 0 8 5c-.494 0-.96.12-1.372.331-.507-.446-1.054-.843-1.597-1.084A1 1 0 0 1 5 4a3 3 0 0 1 6 0m-.812 6.052A3 3 0 0 0 11 8a3 3 0 0 0-.812-2.052c.215-.18.432-.346.647-.487C11.34 5.131 11.732 5 12 5a3 3 0 1 1 0 6c-.268 0-.66-.13-1.165-.461a7 7 0 0 1-.647-.487m-3.56.617a3 3 0 0 0 2.744 0c.507.446 1.054.842 1.598 1.084q.03.137.03.247a3 3 0 1 1-6 0q0-.11.03-.247c.544-.242 1.091-.638 1.598-1.084m-.816-4.721A3 3 0 0 0 5 8c0 .794.308 1.516.812 2.052a7 7 0 0 1-.647.487C4.66 10.869 4.268 11 4 11a3 3 0 0 1 0-6c.268 0 .66.13 1.165.461.215.141.432.306.647.487M8 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nFlower2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Flower2;\n"
  },
  {
    "path": "src/icons/flower3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Flower3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-flower3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.424 8c.437-.052.811-.136 1.04-.268a2 2 0 0 0-2-3.464c-.229.132-.489.414-.752.767C9.886 4.63 10 4.264 10 4a2 2 0 1 0-4 0c0 .264.114.63.288 1.035-.263-.353-.523-.635-.752-.767a2 2 0 0 0-2 3.464c.229.132.603.216 1.04.268-.437.052-.811.136-1.04.268a2 2 0 1 0 2 3.464c.229-.132.489-.414.752-.767C6.114 11.37 6 11.736 6 12a2 2 0 1 0 4 0c0-.264-.114-.63-.288-1.035.263.353.523.635.752.767a2 2 0 1 0 2-3.464c-.229-.132-.603-.216-1.04-.268M9 4a2 2 0 0 1-.045.205q-.059.2-.183.484a13 13 0 0 1-.637 1.223L8 6.142l-.135-.23a13 13 0 0 1-.637-1.223 4 4 0 0 1-.183-.484A2 2 0 0 1 7 4a1 1 0 1 1 2 0M3.67 5.5a1 1 0 0 1 1.366-.366 2 2 0 0 1 .156.142q.142.15.326.4c.245.333.502.747.742 1.163l.13.232-.265.002a13 13 0 0 1-1.379-.06 4 4 0 0 1-.51-.083 2 2 0 0 1-.2-.064A1 1 0 0 1 3.67 5.5m1.366 5.366a1 1 0 0 1-1-1.732l.047-.02q.055-.02.153-.044.202-.048.51-.083a13 13 0 0 1 1.379-.06q.135 0 .266.002l-.131.232c-.24.416-.497.83-.742 1.163a4 4 0 0 1-.327.4 2 2 0 0 1-.155.142M9 12a1 1 0 0 1-2 0 2 2 0 0 1 .045-.206q.058-.198.183-.483c.166-.378.396-.808.637-1.223L8 9.858l.135.23c.241.415.47.845.637 1.223q.124.285.183.484A1.3 1.3 0 0 1 9 12m3.33-6.5a1 1 0 0 1-.366 1.366 2 2 0 0 1-.2.064q-.202.048-.51.083c-.412.045-.898.061-1.379.06q-.135 0-.266-.002l.131-.232c.24-.416.497-.83.742-1.163a4 4 0 0 1 .327-.4q.07-.074.114-.11l.041-.032a1 1 0 0 1 1.366.366m-1.366 5.366a2 2 0 0 1-.155-.141 4 4 0 0 1-.327-.4A13 13 0 0 1 9.74 9.16l-.13-.232.265-.002c.48-.001.967.015 1.379.06q.308.035.51.083.098.024.153.044l.048.02a1 1 0 1 1-1 1.732zM8 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nFlower3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Flower3;\n"
  },
  {
    "path": "src/icons/folder-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m.5 3 .04.87a2 2 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2m5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19q-.362.002-.683.12L1.5 2.98a1 1 0 0 1 1-.98z\" />\n        <path d=\"M15.854 10.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.707 0l-1.5-1.5a.5.5 0 0 1 .707-.708l1.146 1.147 2.646-2.647a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nFolderCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderCheck;\n"
  },
  {
    "path": "src/icons/folder-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.828 3h3.982a2 2 0 0 1 1.992 2.181l-.637 7A2 2 0 0 1 13.174 14H2.825a2 2 0 0 1-1.991-1.819l-.637-7a2 2 0 0 1 .342-1.31L.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3m-8.322.12q.322-.119.684-.12h5.396l-.707-.707A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981z\" />\n      </svg>\n    );\n  },\n);\n\nFolderFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderFill;\n"
  },
  {
    "path": "src/icons/folder-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m.5 3 .04.87a2 2 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2m5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19q-.362.002-.683.12L1.5 2.98a1 1 0 0 1 1-.98z\" />\n        <path d=\"M11 11.5a.5.5 0 0 1 .5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFolderMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderMinus;\n"
  },
  {
    "path": "src/icons/folder-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m.5 3 .04.87a2 2 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2m5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19q-.362.002-.683.12L1.5 2.98a1 1 0 0 1 1-.98z\" />\n        <path d=\"M13.5 9a.5.5 0 0 1 .5.5V11h1.5a.5.5 0 1 1 0 1H14v1.5a.5.5 0 1 1-1 0V12h-1.5a.5.5 0 0 1 0-1H13V9.5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFolderPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderPlus;\n"
  },
  {
    "path": "src/icons/folder-symlink-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderSymlinkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-symlink-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2l.04.87a2 2 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14h10.348a2 2 0 0 0 1.991-1.819l.637-7A2 2 0 0 0 13.81 3M2.19 3q-.362.002-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672a1 1 0 0 1 .707.293L7.586 3zm9.608 5.271-3.182 1.97c-.27.166-.616-.036-.616-.372V9.1s-2.571-.3-4 2.4c.571-4.8 3.143-4.8 4-4.8v-.769c0-.336.346-.538.616-.371l3.182 1.969c.27.166.27.576 0 .742\" />\n      </svg>\n    );\n  },\n);\n\nFolderSymlinkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderSymlinkFill;\n"
  },
  {
    "path": "src/icons/folder-symlink.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderSymlink = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-symlink', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m11.798 8.271-3.182 1.97c-.27.166-.616-.036-.616-.372V9.1s-2.571-.3-4 2.4c.571-4.8 3.143-4.8 4-4.8v-.769c0-.336.346-.538.616-.371l3.182 1.969c.27.166.27.576 0 .742\" />\n        <path d=\"m.5 3 .04.87a2 2 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14h10.348a2 2 0 0 0 1.991-1.819l.637-7A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2m.694 2.09A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09l-.636 7a1 1 0 0 1-.996.91H2.826a1 1 0 0 1-.995-.91zM6.172 2a1 1 0 0 1 .707.293L7.586 3H2.19q-.362.002-.683.12L1.5 2.98a1 1 0 0 1 1-.98z\" />\n      </svg>\n    );\n  },\n);\n\nFolderSymlink.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderSymlink;\n"
  },
  {
    "path": "src/icons/folder-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FolderX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3h3.982a2 2 0 0 1 1.992 2.181L15.546 8H14.54l.265-2.91A1 1 0 0 0 13.81 4H2.19a1 1 0 0 0-.996 1.09l.637 7a1 1 0 0 0 .995.91H9v1H2.826a2 2 0 0 1-1.991-1.819l-.637-7a2 2 0 0 1 .342-1.31zm6.339-1.577A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981l.006.139q.323-.119.684-.12h5.396z\" />\n        <path d=\"M11.854 10.146a.5.5 0 0 0-.707.708L12.293 12l-1.146 1.146a.5.5 0 0 0 .707.708L13 12.707l1.146 1.147a.5.5 0 0 0 .708-.708L13.707 12l1.147-1.146a.5.5 0 0 0-.707-.708L13 11.293z\" />\n      </svg>\n    );\n  },\n);\n\nFolderX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FolderX;\n"
  },
  {
    "path": "src/icons/folder.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Folder = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3h3.982a2 2 0 0 1 1.992 2.181l-.637 7A2 2 0 0 1 13.174 14H2.826a2 2 0 0 1-1.991-1.819l-.637-7a2 2 0 0 1 .342-1.31zM2.19 4a1 1 0 0 0-.996 1.09l.637 7a1 1 0 0 0 .995.91h10.348a1 1 0 0 0 .995-.91l.637-7A1 1 0 0 0 13.81 4zm4.69-1.707A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981l.006.139q.323-.119.684-.12h5.396z\" />\n      </svg>\n    );\n  },\n);\n\nFolder.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Folder;\n"
  },
  {
    "path": "src/icons/folder2-open.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Folder2Open = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder2-open', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3.5A1.5 1.5 0 0 1 2.5 2h2.764c.958 0 1.76.56 2.311 1.184C7.985 3.648 8.48 4 9 4h4.5A1.5 1.5 0 0 1 15 5.5v.64c.57.265.94.876.856 1.546l-.64 5.124A2.5 2.5 0 0 1 12.733 15H3.266a2.5 2.5 0 0 1-2.481-2.19l-.64-5.124A1.5 1.5 0 0 1 1 6.14zM2 6h12v-.5a.5.5 0 0 0-.5-.5H9c-.964 0-1.71-.629-2.174-1.154C6.374 3.334 5.82 3 5.264 3H2.5a.5.5 0 0 0-.5.5zm-.367 1a.5.5 0 0 0-.496.562l.64 5.124A1.5 1.5 0 0 0 3.266 14h9.468a1.5 1.5 0 0 0 1.489-1.314l.64-5.124A.5.5 0 0 0 14.367 7z\" />\n      </svg>\n    );\n  },\n);\n\nFolder2Open.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Folder2Open;\n"
  },
  {
    "path": "src/icons/folder2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Folder2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-folder2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3.5A1.5 1.5 0 0 1 2.5 2h2.764c.958 0 1.76.56 2.311 1.184C7.985 3.648 8.48 4 9 4h4.5A1.5 1.5 0 0 1 15 5.5v7a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 12.5zM2.5 3a.5.5 0 0 0-.5.5V6h12v-.5a.5.5 0 0 0-.5-.5H9c-.964 0-1.71-.629-2.174-1.154C6.374 3.334 5.82 3 5.264 3zM14 7H2v5.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nFolder2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Folder2;\n"
  },
  {
    "path": "src/icons/fonts.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Fonts = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fonts', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.258 3h-8.51l-.083 2.46h.479c.26-1.544.758-1.783 2.693-1.845l.424-.013v7.827c0 .663-.144.82-1.3.923v.52h4.082v-.52c-1.162-.103-1.306-.26-1.306-.923V3.602l.431.013c1.934.062 2.434.301 2.693 1.846h.479z\" />\n      </svg>\n    );\n  },\n);\n\nFonts.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Fonts;\n"
  },
  {
    "path": "src/icons/fork-knife.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ForkKnife = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fork-knife', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z\" />\n      </svg>\n    );\n  },\n);\n\nForkKnife.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ForkKnife;\n"
  },
  {
    "path": "src/icons/forward-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ForwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-forward-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m9.77 12.11 4.012-2.953a.647.647 0 0 0 0-1.114L9.771 5.09a.644.644 0 0 0-.971.557V6.65H2v3.9h6.8v1.003c0 .505.545.808.97.557\" />\n      </svg>\n    );\n  },\n);\n\nForwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ForwardFill;\n"
  },
  {
    "path": "src/icons/forward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Forward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-forward', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.502 5.513a.144.144 0 0 0-.202.134V6.65a.5.5 0 0 1-.5.5H2.5v2.9h6.3a.5.5 0 0 1 .5.5v1.003c0 .108.11.176.202.134l3.984-2.933.042-.028a.147.147 0 0 0 0-.252l-.042-.028zM8.3 5.647a1.144 1.144 0 0 1 1.767-.96l3.994 2.94a1.147 1.147 0 0 1 0 1.946l-3.994 2.94a1.144 1.144 0 0 1-1.767-.96v-.503H2a.5.5 0 0 1-.5-.5v-3.9a.5.5 0 0 1 .5-.5h6.3z\" />\n      </svg>\n    );\n  },\n);\n\nForward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Forward;\n"
  },
  {
    "path": "src/icons/front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Front = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-front', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2zm5 10v2a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2v5a2 2 0 0 1-2 2z\" />\n      </svg>\n    );\n  },\n);\n\nFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Front;\n"
  },
  {
    "path": "src/icons/fuel-pump-diesel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FuelPumpDieselFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fuel-pump-diesel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.974 9.806h.692q.459 0 .75.19.297.191.437.568.144.377.144.941 0 .425-.083.74-.08.315-.241.528a1 1 0 0 1-.412.315 1.6 1.6 0 0 1-.595.103h-.692z\" />\n        <path d=\"M1 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v8a2 2 0 0 1 2 2v.5a.5.5 0 0 0 1 0V8h-.5a.5.5 0 0 1-.5-.5V4.375a.5.5 0 0 1 .5-.5h1.495c-.011-.476-.053-.894-.201-1.222a.97.97 0 0 0-.394-.458c-.184-.11-.464-.195-.9-.195a.5.5 0 0 1 0-1q.846-.002 1.412.336c.383.228.634.551.794.907.295.655.294 1.465.294 2.081V7.5a.5.5 0 0 1-.5.5H15v4.5a1.5 1.5 0 0 1-3 0V12a1 1 0 0 0-1-1v4h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1zm2 .5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5M4 9v5h1.796q.744 0 1.23-.297.49-.296.732-.86T8 11.487q0-.788-.242-1.344a1.78 1.78 0 0 0-.725-.85Q6.547 9 5.796 9z\" />\n      </svg>\n    );\n  },\n);\n\nFuelPumpDieselFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FuelPumpDieselFill;\n"
  },
  {
    "path": "src/icons/fuel-pump-diesel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FuelPumpDiesel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fuel-pump-diesel', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 2a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5zM4 14V9h1.796q.75 0 1.237.293t.725.85Q8 10.7 8 11.487q0 .792-.242 1.355a1.8 1.8 0 0 1-.732.861Q6.54 14 5.796 14zm1.666-4.194h-.692v3.385h.692q.343 0 .595-.103a1 1 0 0 0 .412-.315q.162-.213.241-.528.084-.314.083-.74 0-.565-.144-.94a1.1 1.1 0 0 0-.436-.569q-.293-.19-.75-.19Z\" />\n        <path d=\"M3 0a2 2 0 0 0-2 2v13H.5a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1H11v-4a1 1 0 0 1 1 1v.5a1.5 1.5 0 0 0 3 0V8h.5a.5.5 0 0 0 .5-.5V4.324c0-.616 0-1.426-.294-2.081a1.97 1.97 0 0 0-.794-.907Q14.345.999 13.5 1a.5.5 0 0 0 0 1c.436 0 .716.086.9.195a.97.97 0 0 1 .394.458c.147.328.19.746.201 1.222H13.5a.5.5 0 0 0-.5.5V7.5a.5.5 0 0 0 .5.5h.5v4.5a.5.5 0 0 1-1 0V12a2 2 0 0 0-2-2V2a2 2 0 0 0-2-2zm7 2v13H2V2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1\" />\n      </svg>\n    );\n  },\n);\n\nFuelPumpDiesel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FuelPumpDiesel;\n"
  },
  {
    "path": "src/icons/fuel-pump-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FuelPumpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fuel-pump-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v8a2 2 0 0 1 2 2v.5a.5.5 0 0 0 1 0V8h-.5a.5.5 0 0 1-.5-.5V4.375a.5.5 0 0 1 .5-.5h1.495c-.011-.476-.053-.894-.201-1.222a.97.97 0 0 0-.394-.458c-.184-.11-.464-.195-.9-.195a.5.5 0 0 1 0-1q.846-.002 1.412.336c.383.228.634.551.794.907.295.655.294 1.465.294 2.081V7.5a.5.5 0 0 1-.5.5H15v4.5a1.5 1.5 0 0 1-3 0V12a1 1 0 0 0-1-1v4h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1zm2.5 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nFuelPumpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FuelPumpFill;\n"
  },
  {
    "path": "src/icons/fuel-pump.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FuelPump = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fuel-pump', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n        <path d=\"M1 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v8a2 2 0 0 1 2 2v.5a.5.5 0 0 0 1 0V8h-.5a.5.5 0 0 1-.5-.5V4.375a.5.5 0 0 1 .5-.5h1.495c-.011-.476-.053-.894-.201-1.222a.97.97 0 0 0-.394-.458c-.184-.11-.464-.195-.9-.195a.5.5 0 0 1 0-1q.846-.002 1.412.336c.383.228.634.551.794.907.295.655.294 1.465.294 2.081v3.175a.5.5 0 0 1-.5.501H15v4.5a1.5 1.5 0 0 1-3 0V12a1 1 0 0 0-1-1v4h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1zm9 0a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v13h8z\" />\n      </svg>\n    );\n  },\n);\n\nFuelPump.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FuelPump;\n"
  },
  {
    "path": "src/icons/fullscreen-exit.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FullscreenExit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fullscreen-exit', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 0a.5.5 0 0 1 .5.5v4A1.5 1.5 0 0 1 4.5 6h-4a.5.5 0 0 1 0-1h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 1 .5-.5m5 0a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 10 4.5v-4a.5.5 0 0 1 .5-.5M0 10.5a.5.5 0 0 1 .5-.5h4A1.5 1.5 0 0 1 6 11.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 1-.5-.5m10 1a1.5 1.5 0 0 1 1.5-1.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nFullscreenExit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FullscreenExit;\n"
  },
  {
    "path": "src/icons/fullscreen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Fullscreen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-fullscreen', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 1a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0v-4A1.5 1.5 0 0 1 1.5 0h4a.5.5 0 0 1 0 1zM10 .5a.5.5 0 0 1 .5-.5h4A1.5 1.5 0 0 1 16 1.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 1-.5-.5M.5 10a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 0 14.5v-4a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v4a1.5 1.5 0 0 1-1.5 1.5h-4a.5.5 0 0 1 0-1h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nFullscreen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Fullscreen;\n"
  },
  {
    "path": "src/icons/funnel-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst FunnelFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-funnel-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5z\" />\n      </svg>\n    );\n  },\n);\n\nFunnelFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default FunnelFill;\n"
  },
  {
    "path": "src/icons/funnel.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Funnel = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-funnel', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5zm1 .5v1.308l4.372 4.858A.5.5 0 0 1 7 8.5v5.306l2-.666V8.5a.5.5 0 0 1 .128-.334L13.5 3.308V2z\" />\n      </svg>\n    );\n  },\n);\n\nFunnel.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Funnel;\n"
  },
  {
    "path": "src/icons/gear-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GearFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gear-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z\" />\n      </svg>\n    );\n  },\n);\n\nGearFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GearFill;\n"
  },
  {
    "path": "src/icons/gear-wide-connected.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GearWideConnected = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gear-wide-connected', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.068.727c.243-.97 1.62-.97 1.864 0l.071.286a.96.96 0 0 0 1.622.434l.205-.211c.695-.719 1.888-.03 1.613.931l-.08.284a.96.96 0 0 0 1.187 1.187l.283-.081c.96-.275 1.65.918.931 1.613l-.211.205a.96.96 0 0 0 .434 1.622l.286.071c.97.243.97 1.62 0 1.864l-.286.071a.96.96 0 0 0-.434 1.622l.211.205c.719.695.03 1.888-.931 1.613l-.284-.08a.96.96 0 0 0-1.187 1.187l.081.283c.275.96-.918 1.65-1.613.931l-.205-.211a.96.96 0 0 0-1.622.434l-.071.286c-.243.97-1.62.97-1.864 0l-.071-.286a.96.96 0 0 0-1.622-.434l-.205.211c-.695.719-1.888.03-1.613-.931l.08-.284a.96.96 0 0 0-1.186-1.187l-.284.081c-.96.275-1.65-.918-.931-1.613l.211-.205a.96.96 0 0 0-.434-1.622l-.286-.071c-.97-.243-.97-1.62 0-1.864l.286-.071a.96.96 0 0 0 .434-1.622l-.211-.205c-.719-.695-.03-1.888.931-1.613l.284.08a.96.96 0 0 0 1.187-1.186l-.081-.284c-.275-.96.918-1.65 1.613-.931l.205.211a.96.96 0 0 0 1.622-.434zM12.973 8.5H8.25l-2.834 3.779A4.998 4.998 0 0 0 12.973 8.5m0-1a4.998 4.998 0 0 0-7.557-3.779l2.834 3.78zM5.048 3.967l-.087.065zm-.431.355A4.98 4.98 0 0 0 3.002 8c0 1.455.622 2.765 1.615 3.678L7.375 8zm.344 7.646.087.065z\" />\n      </svg>\n    );\n  },\n);\n\nGearWideConnected.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GearWideConnected;\n"
  },
  {
    "path": "src/icons/gear-wide.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GearWide = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gear-wide', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.932.727c-.243-.97-1.62-.97-1.864 0l-.071.286a.96.96 0 0 1-1.622.434l-.205-.211c-.695-.719-1.888-.03-1.613.931l.08.284a.96.96 0 0 1-1.186 1.187l-.284-.081c-.96-.275-1.65.918-.931 1.613l.211.205a.96.96 0 0 1-.434 1.622l-.286.071c-.97.243-.97 1.62 0 1.864l.286.071a.96.96 0 0 1 .434 1.622l-.211.205c-.719.695-.03 1.888.931 1.613l.284-.08a.96.96 0 0 1 1.187 1.187l-.081.283c-.275.96.918 1.65 1.613.931l.205-.211a.96.96 0 0 1 1.622.434l.071.286c.243.97 1.62.97 1.864 0l.071-.286a.96.96 0 0 1 1.622-.434l.205.211c.695.719 1.888.03 1.613-.931l-.08-.284a.96.96 0 0 1 1.187-1.187l.283.081c.96.275 1.65-.918.931-1.613l-.211-.205a.96.96 0 0 1 .434-1.622l.286-.071c.97-.243.97-1.62 0-1.864l-.286-.071a.96.96 0 0 1-.434-1.622l.211-.205c.719-.695.03-1.888-.931-1.613l-.284.08a.96.96 0 0 1-1.187-1.186l.081-.284c.275-.96-.918-1.65-1.613-.931l-.205.211a.96.96 0 0 1-1.622-.434zM8 12.997a4.998 4.998 0 1 1 0-9.995 4.998 4.998 0 0 1 0 9.996z\" />\n      </svg>\n    );\n  },\n);\n\nGearWide.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GearWide;\n"
  },
  {
    "path": "src/icons/gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Gear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gear', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0\" />\n        <path d=\"M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115z\" />\n      </svg>\n    );\n  },\n);\n\nGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Gear;\n"
  },
  {
    "path": "src/icons/gem.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Gem = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gem', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.1.7a.5.5 0 0 1 .4-.2h9a.5.5 0 0 1 .4.2l2.976 3.974c.149.185.156.45.01.644L8.4 15.3a.5.5 0 0 1-.8 0L.1 5.3a.5.5 0 0 1 0-.6zm11.386 3.785-1.806-2.41-.776 2.413zm-3.633.004.961-2.989H4.186l.963 2.995zM5.47 5.495 8 13.366l2.532-7.876zm-1.371-.999-.78-2.422-1.818 2.425zM1.499 5.5l5.113 6.817-2.192-6.82zm7.889 6.817 5.123-6.83-2.928.002z\" />\n      </svg>\n    );\n  },\n);\n\nGem.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Gem;\n"
  },
  {
    "path": "src/icons/gender-ambiguous.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GenderAmbiguous = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gender-ambiguous', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.5 1a.5.5 0 0 1 0-1h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V1.707l-3.45 3.45A4 4 0 0 1 8.5 10.97V13H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V14H6a.5.5 0 0 1 0-1h1.5v-2.03a4 4 0 1 1 3.471-6.648L14.293 1zm-.997 4.346a3 3 0 1 0-5.006 3.309 3 3 0 0 0 5.006-3.31z\"\n        />\n      </svg>\n    );\n  },\n);\n\nGenderAmbiguous.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GenderAmbiguous;\n"
  },
  {
    "path": "src/icons/gender-female.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GenderFemale = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gender-female', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a4 4 0 1 0 0 8 4 4 0 0 0 0-8M3 5a5 5 0 1 1 5.5 4.975V12h2a.5.5 0 0 1 0 1h-2v2.5a.5.5 0 0 1-1 0V13h-2a.5.5 0 0 1 0-1h2V9.975A5 5 0 0 1 3 5\"\n        />\n      </svg>\n    );\n  },\n);\n\nGenderFemale.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GenderFemale;\n"
  },
  {
    "path": "src/icons/gender-male.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GenderMale = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gender-male', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.5 2a.5.5 0 0 1 0-1h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0V2.707L9.871 6.836a5 5 0 1 1-.707-.707L13.293 2zM6 6a4 4 0 1 0 0 8 4 4 0 0 0 0-8\"\n        />\n      </svg>\n    );\n  },\n);\n\nGenderMale.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GenderMale;\n"
  },
  {
    "path": "src/icons/gender-neuter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GenderNeuter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gender-neuter', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a4 4 0 1 0 0 8 4 4 0 0 0 0-8M3 5a5 5 0 1 1 5.5 4.975V15.5a.5.5 0 0 1-1 0V9.975A5 5 0 0 1 3 5\"\n        />\n      </svg>\n    );\n  },\n);\n\nGenderNeuter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GenderNeuter;\n"
  },
  {
    "path": "src/icons/gender-trans.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GenderTrans = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gender-trans', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 .5A.5.5 0 0 1 .5 0h3a.5.5 0 0 1 0 1H1.707L3.5 2.793l.646-.647a.5.5 0 1 1 .708.708l-.647.646.822.822A4 4 0 0 1 8 3c1.18 0 2.239.51 2.971 1.322L14.293 1H11.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V1.707l-3.45 3.45A4 4 0 0 1 8.5 10.97V13H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V14H6a.5.5 0 0 1 0-1h1.5v-2.03a4 4 0 0 1-3.05-5.814l-.95-.949-.646.647a.5.5 0 1 1-.708-.708l.647-.646L1 1.707V3.5a.5.5 0 0 1-1 0zm5.49 4.856a3 3 0 1 0 5.02 3.288 3 3 0 0 0-5.02-3.288\"\n        />\n      </svg>\n    );\n  },\n);\n\nGenderTrans.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GenderTrans;\n"
  },
  {
    "path": "src/icons/geo-alt-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GeoAltFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-geo-alt-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10m0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6\" />\n      </svg>\n    );\n  },\n);\n\nGeoAltFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GeoAltFill;\n"
  },
  {
    "path": "src/icons/geo-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GeoAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-geo-alt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A32 32 0 0 1 8 14.58a32 32 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10\" />\n        <path d=\"M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nGeoAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GeoAlt;\n"
  },
  {
    "path": "src/icons/geo-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GeoFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-geo-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999zm2.493 8.574a.5.5 0 0 1-.411.575c-.712.118-1.28.295-1.655.493a1.3 1.3 0 0 0-.37.265.3.3 0 0 0-.057.09V14l.002.008.016.033a.6.6 0 0 0 .145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.6.6 0 0 0 .146-.15l.015-.033L12 14v-.004a.3.3 0 0 0-.057-.09 1.3 1.3 0 0 0-.37-.264c-.376-.198-.943-.375-1.655-.493a.5.5 0 1 1 .164-.986c.77.127 1.452.328 1.957.594C12.5 13 13 13.4 13 14c0 .426-.26.752-.544.977-.29.228-.68.413-1.116.558-.878.293-2.059.465-3.34.465s-2.462-.172-3.34-.465c-.436-.145-.826-.33-1.116-.558C3.26 14.752 3 14.426 3 14c0-.599.5-1 .961-1.243.505-.266 1.187-.467 1.957-.594a.5.5 0 0 1 .575.411\"\n        />\n      </svg>\n    );\n  },\n);\n\nGeoFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GeoFill;\n"
  },
  {
    "path": "src/icons/geo.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Geo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-geo', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a3 3 0 1 0 0 6 3 3 0 0 0 0-6M4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999zm2.493 8.574a.5.5 0 0 1-.411.575c-.712.118-1.28.295-1.655.493a1.3 1.3 0 0 0-.37.265.3.3 0 0 0-.057.09V14l.002.008.016.033a.6.6 0 0 0 .145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.6.6 0 0 0 .146-.15l.015-.033L12 14v-.004a.3.3 0 0 0-.057-.09 1.3 1.3 0 0 0-.37-.264c-.376-.198-.943-.375-1.655-.493a.5.5 0 1 1 .164-.986c.77.127 1.452.328 1.957.594C12.5 13 13 13.4 13 14c0 .426-.26.752-.544.977-.29.228-.68.413-1.116.558-.878.293-2.059.465-3.34.465s-2.462-.172-3.34-.465c-.436-.145-.826-.33-1.116-.558C3.26 14.752 3 14.426 3 14c0-.599.5-1 .961-1.243.505-.266 1.187-.467 1.957-.594a.5.5 0 0 1 .575.411\"\n        />\n      </svg>\n    );\n  },\n);\n\nGeo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Geo;\n"
  },
  {
    "path": "src/icons/gift-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GiftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gift-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1 5 0v.006c0 .07 0 .27-.038.494H15a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h2.038A3 3 0 0 1 3 2.506zm1.068.5H7v-.5a1.5 1.5 0 1 0-3 0c0 .085.002.274.045.43zM9 3h2.932l.023-.07c.043-.156.045-.345.045-.43a1.5 1.5 0 0 0-3 0zm6 4v7.5a1.5 1.5 0 0 1-1.5 1.5H9V7zM2.5 16A1.5 1.5 0 0 1 1 14.5V7h6v9z\" />\n      </svg>\n    );\n  },\n);\n\nGiftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GiftFill;\n"
  },
  {
    "path": "src/icons/gift.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Gift = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gift', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1 5 0v.006c0 .07 0 .27-.038.494H15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 14.5V7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h2.038A3 3 0 0 1 3 2.506zm1.068.5H7v-.5a1.5 1.5 0 1 0-3 0c0 .085.002.274.045.43zM9 3h2.932l.023-.07c.043-.156.045-.345.045-.43a1.5 1.5 0 0 0-3 0zM1 4v2h6V4zm8 0v2h6V4zm5 3H9v8h4.5a.5.5 0 0 0 .5-.5zm-7 8V7H2v7.5a.5.5 0 0 0 .5.5z\" />\n      </svg>\n    );\n  },\n);\n\nGift.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Gift;\n"
  },
  {
    "path": "src/icons/git.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Git = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-git', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.698 7.287 8.712.302a1.03 1.03 0 0 0-1.457 0l-1.45 1.45 1.84 1.84a1.223 1.223 0 0 1 1.55 1.56l1.773 1.774a1.224 1.224 0 0 1 1.267 2.025 1.226 1.226 0 0 1-2.002-1.334L8.58 5.963v4.353a1.226 1.226 0 1 1-1.008-.036V5.887a1.226 1.226 0 0 1-.666-1.608L5.093 2.465l-4.79 4.79a1.03 1.03 0 0 0 0 1.457l6.986 6.986a1.03 1.03 0 0 0 1.457 0l6.953-6.953a1.03 1.03 0 0 0 0-1.457\" />\n      </svg>\n    );\n  },\n);\n\nGit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Git;\n"
  },
  {
    "path": "src/icons/github.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Github = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-github', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8\" />\n      </svg>\n    );\n  },\n);\n\nGithub.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Github;\n"
  },
  {
    "path": "src/icons/gitlab.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Gitlab = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gitlab', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m15.734 6.1-.022-.058L13.534.358a.57.57 0 0 0-.563-.356.6.6 0 0 0-.328.122.6.6 0 0 0-.193.294l-1.47 4.499H5.025l-1.47-4.5A.572.572 0 0 0 2.47.358L.289 6.04l-.022.057A4.044 4.044 0 0 0 1.61 10.77l.007.006.02.014 3.318 2.485 1.64 1.242 1 .755a.67.67 0 0 0 .814 0l1-.755 1.64-1.242 3.338-2.5.009-.007a4.05 4.05 0 0 0 1.34-4.668Z\" />\n      </svg>\n    );\n  },\n);\n\nGitlab.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Gitlab;\n"
  },
  {
    "path": "src/icons/globe-americas-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeAmericasFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-americas-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m8 0 .412.01A7.97 7.97 0 0 1 13.29 2a8.04 8.04 0 0 1 2.548 4.382 8 8 0 1 1-15.674 0 8 8 0 0 1 1.361-3.078A8 8 0 0 1 2.711 2 7.96 7.96 0 0 1 8 0m0 1a7 7 0 0 0-5.958 3.324C2.497 6.192 6.669 7.827 6.5 8c-.5.5-1.034.884-1 1.5.07 1.248 2.259.774 2.5 2 .202 1.032-1.051 3 0 3 1.5-.5 3.798-3.186 4-5 .138-1.242-2-2-3.5-2.5-.828-.276-1.055.648-1.5.5S4.5 5.5 5.5 5s1 0 1.5.5c1 .5.5-1 1-1.5.838-.838 3.16-1.394 3.605-2.001A6.97 6.97 0 0 0 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nGlobeAmericasFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeAmericasFill;\n"
  },
  {
    "path": "src/icons/globe-americas.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeAmericas = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-americas', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M2.04 4.326c.325 1.329 2.532 2.54 3.717 3.19.48.263.793.434.743.484q-.121.12-.242.234c-.416.396-.787.749-.758 1.266.035.634.618.824 1.214 1.017.577.188 1.168.38 1.286.983.082.417-.075.988-.22 1.52-.215.782-.406 1.48.22 1.48 1.5-.5 3.798-3.186 4-5 .138-1.243-2-2-3.5-2.5-.478-.16-.755.081-.99.284-.172.15-.322.279-.51.216-.445-.148-2.5-2-1.5-2.5.78-.39.952-.171 1.227.182.078.099.163.208.273.318.609.304.662-.132.723-.633.039-.322.081-.671.277-.867.434-.434 1.265-.791 2.028-1.12.712-.306 1.365-.587 1.579-.88A7 7 0 1 1 2.04 4.327Z\" />\n      </svg>\n    );\n  },\n);\n\nGlobeAmericas.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeAmericas;\n"
  },
  {
    "path": "src/icons/globe-asia-australia-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeAsiaAustraliaFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-asia-australia-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m3.041 9a1 1 0 0 0-.946.674l-.172.499a1 1 0 0 1-.403.515l-.803.517a1 1 0 0 0-.458.84v.455a1 1 0 0 0 1 1h.257c.192 0 .38.055.542.16l.762.491a1 1 0 0 0 .282.123A7 7 0 0 0 14.82 9.57a1 1 0 0 0-.085-.061l-.315-.204a1 1 0 0 0-.977-.06l-.169.082a1 1 0 0 1-.742.051l-1.02-.33A1 1 0 0 0 11.205 9zm-5.832 2.655a.302.302 0 1 0-.298.52l.762.325.48.232A.386.386 0 1 0 6.321 12h-.417a.7.7 0 0 1-.418-.139zM8 1a7 7 0 0 0-6.387 9.864l.754-1.285a1 1 0 0 1 1.546-.225l1.074 1.005a.986.986 0 0 0 1.36-.011l.038-.037a.88.88 0 0 0 .26-.754c-.075-.549.37-1.035.92-1.1.728-.086 1.587-.324 1.728-.957.086-.386-.115-.83-.361-1.2-.208-.312 0-.8.374-.8.122 0 .24-.055.318-.15l.393-.474c.196-.237.49-.368.797-.403.554-.065 1.407-.277 1.582-.973.185-.731-.986-.944-.998-1.62A7 7 0 0 0 8 1m.524 8.963a.413.413 0 1 0-.783-.183v.028a.46.46 0 0 1-.137.326l-.113.107a.36.36 0 0 0 .5.518l.193-.187a.6.6 0 0 0 .12-.166zm3.374-4.444c-.252-.244-.681-.139-.931.107-.256.251-.578.406-.918.585-.338.177-.264.625.101.735a.48.48 0 0 0 .345-.027l1.278-.617a.484.484 0 0 0 .125-.783\"\n        />\n      </svg>\n    );\n  },\n);\n\nGlobeAsiaAustraliaFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeAsiaAustraliaFill;\n"
  },
  {
    "path": "src/icons/globe-asia-australia.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeAsiaAustralia = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-asia-australia', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m10.495 6.92 1.278-.619a.483.483 0 0 0 .126-.782c-.252-.244-.682-.139-.932.107-.23.226-.513.373-.816.53l-.102.054c-.338.178-.264.626.1.736a.48.48 0 0 0 .346-.027ZM7.741 9.808V9.78a.413.413 0 1 1 .783.183l-.22.443a.6.6 0 0 1-.12.167l-.193.185a.36.36 0 1 1-.5-.516l.112-.108a.45.45 0 0 0 .138-.326M5.672 12.5l.482.233A.386.386 0 1 0 6.32 12h-.416a.7.7 0 0 1-.419-.139l-.277-.206a.302.302 0 1 0-.298.52z\" />\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1.612 10.867l.756-1.288a1 1 0 0 1 1.545-.225l1.074 1.005a.986.986 0 0 0 1.36-.011l.038-.037a.88.88 0 0 0 .26-.755c-.075-.548.37-1.033.92-1.099.728-.086 1.587-.324 1.728-.957.086-.386-.114-.83-.361-1.2-.207-.312 0-.8.374-.8.123 0 .24-.055.318-.15l.393-.474c.196-.237.491-.368.797-.403.554-.064 1.407-.277 1.583-.973.098-.391-.192-.634-.484-.88-.254-.212-.51-.426-.515-.741a7 7 0 0 1 3.425 7.692 1 1 0 0 0-.087-.063l-.316-.204a1 1 0 0 0-.977-.06l-.169.082a1 1 0 0 1-.741.051l-1.021-.329A1 1 0 0 0 11.205 9h-.165a1 1 0 0 0-.945.674l-.172.499a1 1 0 0 1-.404.514l-.802.518a1 1 0 0 0-.458.84v.455a1 1 0 0 0 1 1h.257a1 1 0 0 1 .542.16l.762.49a1 1 0 0 0 .283.126 7 7 0 0 1-9.49-3.409Z\" />\n      </svg>\n    );\n  },\n);\n\nGlobeAsiaAustralia.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeAsiaAustralia;\n"
  },
  {
    "path": "src/icons/globe-central-south-asia-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeCentralSouthAsiaFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-central-south-asia-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1a7 7 0 0 0-3.115.73.48.48 0 0 0 .137.292.488.488 0 0 1-.126.78l-.292.145a.7.7 0 0 0-.187.136l-.48.48a1 1 0 0 1-1.023.242l-.02-.007a1 1 0 0 0-.461-.041A6.97 6.97 0 0 0 1 8a6.96 6.96 0 0 0 .883 3.403l.86-.213c.444-.112.757-.512.757-.971v-.184a1 1 0 0 1 .445-.832l.04-.026a1 1 0 0 0 .153-1.54L3.12 6.622a.415.415 0 0 1 .542-.624l1.09.817a.5.5 0 0 0 .523.047A.5.5 0 0 1 6 7.31v.455a.8.8 0 0 0 .13.432l.796 1.193a1 1 0 0 1 .116.238l.73 2.19a1 1 0 0 0 .949.683h.058a1 1 0 0 0 .949-.684l.73-2.189q.042-.127.116-.238l.791-1.187A.45.45 0 0 1 11.743 8c.16 0 .306.083.392.218.557.875 1.63 2.282 2.365 2.282l.04-.003A7 7 0 0 0 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nGlobeCentralSouthAsiaFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeCentralSouthAsiaFill;\n"
  },
  {
    "path": "src/icons/globe-central-south-asia.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeCentralSouthAsia = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-central-south-asia', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M4.882 1.731a.48.48 0 0 0 .14.291.487.487 0 0 1-.126.78l-.291.146a.7.7 0 0 0-.188.135l-.48.48a1 1 0 0 1-1.023.242l-.02-.007a1 1 0 0 0-.462-.04 7 7 0 0 1 2.45-2.027m-3 9.674.86-.216a1 1 0 0 0 .758-.97v-.184a1 1 0 0 1 .445-.832l.04-.026a1 1 0 0 0 .152-1.54L3.121 6.621a.414.414 0 0 1 .542-.624l1.09.818a.5.5 0 0 0 .523.047.5.5 0 0 1 .724.447v.455a.8.8 0 0 0 .131.433l.795 1.192a1 1 0 0 1 .116.238l.73 2.19a1 1 0 0 0 .949.683h.058a1 1 0 0 0 .949-.684l.73-2.189a1 1 0 0 1 .116-.238l.791-1.187A.45.45 0 0 1 11.743 8c.16 0 .306.084.392.218.557.875 1.63 2.282 2.365 2.282l.04-.001a7.003 7.003 0 0 1-12.658.905Z\" />\n      </svg>\n    );\n  },\n);\n\nGlobeCentralSouthAsia.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeCentralSouthAsia;\n"
  },
  {
    "path": "src/icons/globe-europe-africa-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeEuropeAfricaFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-europe-africa-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1a6.97 6.97 0 0 0-4.335 1.505l-.285.641a.847.847 0 0 0 1.48.816l.244-.368a.81.81 0 0 1 1.035-.275.81.81 0 0 0 .722 0l.262-.13a1 1 0 0 1 .775-.05l.984.34q.118.04.243.054c.784.093.855.377.694.801a.84.84 0 0 1-1.035.487l-.01-.003C8.273 4.663 7.747 4.5 6 4.5 4.8 4.5 3.5 5.62 3.5 7c0 3 1.935 1.89 3 3 1.146 1.194-1 4 2 4 1.75 0 3-3.5 3-4.5 0-.704 1.5-1 1-2.5-.097-.291-.396-.568-.642-.756-.173-.133-.206-.396-.051-.55a.334.334 0 0 1 .42-.043l1.085.724a.276.276 0 0 0 .348-.035c.15-.15.414-.083.488.117.16.428.445 1.046.847 1.354A7 7 0 0 0 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nGlobeEuropeAfricaFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeEuropeAfricaFill;\n"
  },
  {
    "path": "src/icons/globe-europe-africa.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GlobeEuropeAfrica = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe-europe-africa', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M3.668 2.501l-.288.646a.847.847 0 0 0 1.479.815l.245-.368a.81.81 0 0 1 1.034-.275.81.81 0 0 0 .724 0l.261-.13a1 1 0 0 1 .775-.05l.984.34q.118.04.243.054c.784.093.855.377.694.801-.155.41-.616.617-1.035.487l-.01-.003C8.274 4.663 7.748 4.5 6 4.5 4.8 4.5 3.5 5.62 3.5 7c0 1.96.826 2.166 1.696 2.382.46.115.935.233 1.304.618.449.467.393 1.181.339 1.877C6.755 12.96 6.674 14 8.5 14c1.75 0 3-3.5 3-4.5 0-.262.208-.468.444-.7.396-.392.87-.86.556-1.8-.097-.291-.396-.568-.641-.756-.174-.133-.207-.396-.052-.551a.33.33 0 0 1 .42-.042l1.085.724c.11.072.255.058.348-.035.15-.15.415-.083.489.117.16.43.445 1.05.849 1.357L15 8A7 7 0 1 1 3.668 2.501\" />\n      </svg>\n    );\n  },\n);\n\nGlobeEuropeAfrica.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GlobeEuropeAfrica;\n"
  },
  {
    "path": "src/icons/globe.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Globe = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m7.5-6.923c-.67.204-1.335.82-1.887 1.855A8 8 0 0 0 5.145 4H7.5zM4.09 4a9.3 9.3 0 0 1 .64-1.539 7 7 0 0 1 .597-.933A7.03 7.03 0 0 0 2.255 4zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a7 7 0 0 0-.656 2.5zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5zM8.5 5v2.5h2.99a12.5 12.5 0 0 0-.337-2.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5zM5.145 12q.208.58.468 1.068c.552 1.035 1.218 1.65 1.887 1.855V12zm.182 2.472a7 7 0 0 1-.597-.933A9.3 9.3 0 0 1 4.09 12H2.255a7 7 0 0 0 3.072 2.472M3.82 11a13.7 13.7 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5zm6.853 3.472A7 7 0 0 0 13.745 12H11.91a9.3 9.3 0 0 1-.64 1.539 7 7 0 0 1-.597.933M8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855q.26-.487.468-1.068zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.7 13.7 0 0 1-.312 2.5m2.802-3.5a7 7 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7 7 0 0 0-3.072-2.472c.218.284.418.598.597.933M10.855 4a8 8 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4z\" />\n      </svg>\n    );\n  },\n);\n\nGlobe.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Globe;\n"
  },
  {
    "path": "src/icons/globe2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Globe2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-globe2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m7.5-6.923c-.67.204-1.335.82-1.887 1.855q-.215.403-.395.872c.705.157 1.472.257 2.282.287zM4.249 3.539q.214-.577.481-1.078a7 7 0 0 1 .597-.933A7 7 0 0 0 3.051 3.05q.544.277 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9 9 0 0 1-1.565-.667A6.96 6.96 0 0 0 1.018 7.5zm1.4-2.741a12.3 12.3 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332M8.5 5.09V7.5h2.99a12.3 12.3 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.6 13.6 0 0 1 7.5 10.91V8.5zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741zm-3.282 3.696q.18.469.395.872c.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a7 7 0 0 1-.598-.933 9 9 0 0 1-.481-1.079 8.4 8.4 0 0 0-1.198.49 7 7 0 0 0 2.276 1.522zm-1.383-2.964A13.4 13.4 0 0 1 3.508 8.5h-2.49a6.96 6.96 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667m6.728 2.964a7 7 0 0 0 2.275-1.521 8.4 8.4 0 0 0-1.197-.49 9 9 0 0 1-.481 1.078 7 7 0 0 1-.597.933M8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855q.216-.403.395-.872A12.6 12.6 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.96 6.96 0 0 0 14.982 8.5h-2.49a13.4 13.4 0 0 1-.437 3.008M14.982 7.5a6.96 6.96 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008zM11.27 2.461q.266.502.482 1.078a8.4 8.4 0 0 0 1.196-.49 7 7 0 0 0-2.275-1.52c.218.283.418.597.597.932m-.488 1.343a8 8 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z\" />\n      </svg>\n    );\n  },\n);\n\nGlobe2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Globe2;\n"
  },
  {
    "path": "src/icons/google-play.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GooglePlay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-google-play', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.222 9.374c1.037-.61 1.037-2.137 0-2.748L11.528 5.04 8.32 8l3.207 2.96zm-3.595 2.116L7.583 8.68 1.03 14.73c.201 1.029 1.36 1.61 2.303 1.055zM1 13.396V2.603L6.846 8zM1.03 1.27l6.553 6.05 3.044-2.81L3.333.215C2.39-.341 1.231.24 1.03 1.27\" />\n      </svg>\n    );\n  },\n);\n\nGooglePlay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GooglePlay;\n"
  },
  {
    "path": "src/icons/google.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Google = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-google', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.545 6.558a9.4 9.4 0 0 1 .139 1.626c0 2.434-.87 4.492-2.384 5.885h.002C11.978 15.292 10.158 16 8 16A8 8 0 1 1 8 0a7.7 7.7 0 0 1 5.352 2.082l-2.284 2.284A4.35 4.35 0 0 0 8 3.166c-2.087 0-3.86 1.408-4.492 3.304a4.8 4.8 0 0 0 0 3.063h.003c.635 1.893 2.405 3.301 4.492 3.301 1.078 0 2.004-.276 2.722-.764h-.003a3.7 3.7 0 0 0 1.599-2.431H8v-3.08z\" />\n      </svg>\n    );\n  },\n);\n\nGoogle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Google;\n"
  },
  {
    "path": "src/icons/gpu-card.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GpuCard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-gpu-card', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0m7.5-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3\" />\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1h1a.5.5 0 0 1 .5.5V4h13.5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5H2v2.5a.5.5 0 0 1-1 0V2H.5a.5.5 0 0 1-.5-.5m5.5 4a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M9 8a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0\" />\n        <path d=\"M3 12.5h3.5v1a.5.5 0 0 1-.5.5H3.5a.5.5 0 0 1-.5-.5zm4 1v-1h4v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nGpuCard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GpuCard;\n"
  },
  {
    "path": "src/icons/graph-down-arrow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GraphDownArrow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-graph-down-arrow', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 0h1v15h15v1H0zm10 11.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-1 0v2.6l-3.613-4.417a.5.5 0 0 0-.74-.037L7.06 8.233 3.404 3.206a.5.5 0 0 0-.808.588l4 5.5a.5.5 0 0 0 .758.06l2.609-2.61L13.445 11H10.5a.5.5 0 0 0-.5.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nGraphDownArrow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GraphDownArrow;\n"
  },
  {
    "path": "src/icons/graph-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GraphDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-graph-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 0h1v15h15v1H0zm14.817 11.887a.5.5 0 0 0 .07-.704l-4.5-5.5a.5.5 0 0 0-.74-.037L7.06 8.233 3.404 3.206a.5.5 0 0 0-.808.588l4 5.5a.5.5 0 0 0 .758.06l2.609-2.61 4.15 5.073a.5.5 0 0 0 .704.07\"\n        />\n      </svg>\n    );\n  },\n);\n\nGraphDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GraphDown;\n"
  },
  {
    "path": "src/icons/graph-up-arrow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GraphUpArrow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-graph-up-arrow', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nGraphUpArrow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GraphUpArrow;\n"
  },
  {
    "path": "src/icons/graph-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GraphUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-graph-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 0h1v15h15v1H0zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07\"\n        />\n      </svg>\n    );\n  },\n);\n\nGraphUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GraphUp;\n"
  },
  {
    "path": "src/icons/grid-1x2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid1x2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-1x2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm9 0a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1zm0 9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid1x2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid1x2Fill;\n"
  },
  {
    "path": "src/icons/grid-1x2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid1x2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-1x2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 1H1v14h5zm9 0h-5v5h5zm0 9v5h-5v-5zM0 1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm9 0a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1zm1 8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid1x2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid1x2;\n"
  },
  {
    "path": "src/icons/grid-3x2-gap-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x2GapFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x2-gap-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zM1 9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x2GapFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x2GapFill;\n"
  },
  {
    "path": "src/icons/grid-3x2-gap.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x2Gap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x2-gap', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4v2H2V4zm1 7V9a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m5 5V9a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1M9 4v2H7V4zm5 0h-2v2h2zM4 9v2H2V9zm5 0v2H7V9zm5 0v2h-2V9zm-3-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zm1 4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x2Gap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x2Gap;\n"
  },
  {
    "path": "src/icons/grid-3x2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3.5A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v8a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5zM1.5 3a.5.5 0 0 0-.5.5V7h4V3zM5 8H1v3.5a.5.5 0 0 0 .5.5H5zm1 0v4h4V8zm4-1V3H6v4zm1 1v4h3.5a.5.5 0 0 0 .5-.5V8zm0-1h4V3.5a.5.5 0 0 0-.5-.5H11z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x2;\n"
  },
  {
    "path": "src/icons/grid-3x3-gap-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x3GapFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x3-gap-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zM1 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zM1 12a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x3GapFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x3GapFill;\n"
  },
  {
    "path": "src/icons/grid-3x3-gap.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x3Gap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x3-gap', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 2v2H2V2zm1 12v-2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m5 10v-2a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V7a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V2a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1M9 2v2H7V2zm5 0v2h-2V2zM4 7v2H2V7zm5 0v2H7V7zm5 0h-2v2h2zM4 12v2H2v-2zm5 0v2H7v-2zm5 0v2h-2v-2zM12 1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zm1 4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x3Gap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x3Gap;\n"
  },
  {
    "path": "src/icons/grid-3x3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid3x3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-3x3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5V5h4V1zM5 6H1v4h4zm1 4h4V6H6zm-1 1H1v3.5a.5.5 0 0 0 .5.5H5zm1 0v4h4v-4zm5 0v4h3.5a.5.5 0 0 0 .5-.5V11zm0-1h4V6h-4zm0-5h4V1.5a.5.5 0 0 0-.5-.5H11zm-1 0V1H6v4z\" />\n      </svg>\n    );\n  },\n);\n\nGrid3x3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid3x3;\n"
  },
  {
    "path": "src/icons/grid-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GridFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5z\" />\n      </svg>\n    );\n  },\n);\n\nGridFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GridFill;\n"
  },
  {
    "path": "src/icons/grid.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Grid = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grid', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5zM2.5 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zM1 10.5A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nGrid.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Grid;\n"
  },
  {
    "path": "src/icons/grip-horizontal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GripHorizontal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grip-horizontal', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nGripHorizontal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GripHorizontal;\n"
  },
  {
    "path": "src/icons/grip-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst GripVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-grip-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nGripVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default GripVertical;\n"
  },
  {
    "path": "src/icons/h-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-h-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5-3.998H9.67v3.322H6.33V4.002H5V12h1.33V8.455h3.34V12H11z\" />\n      </svg>\n    );\n  },\n);\n\nHCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HCircleFill;\n"
  },
  {
    "path": "src/icons/h-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-h-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-5-3.998V12H9.67V8.455H6.33V12H5V4.002h1.33v3.322h3.34V4.002z\" />\n      </svg>\n    );\n  },\n);\n\nHCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HCircle;\n"
  },
  {
    "path": "src/icons/h-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-h-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm9 4.002V12H9.67V8.455H6.33V12H5V4.002h1.33v3.322h3.34V4.002z\" />\n      </svg>\n    );\n  },\n);\n\nHSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HSquareFill;\n"
  },
  {
    "path": "src/icons/h-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-h-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 4.002V12H9.67V8.455H6.33V12H5V4.002h1.33v3.322h3.34V4.002z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nHSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HSquare;\n"
  },
  {
    "path": "src/icons/hammer.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hammer = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hammer', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.972 2.508a.5.5 0 0 0-.16-.556l-.178-.129a5 5 0 0 0-2.076-.783C6.215.862 4.504 1.229 2.84 3.133H1.786a.5.5 0 0 0-.354.147L.146 4.567a.5.5 0 0 0 0 .706l2.571 2.579a.5.5 0 0 0 .708 0l1.286-1.29a.5.5 0 0 0 .146-.353V5.57l8.387 8.873A.5.5 0 0 0 14 14.5l1.5-1.5a.5.5 0 0 0 .017-.689l-9.129-8.63c.747-.456 1.772-.839 3.112-.839a.5.5 0 0 0 .472-.334\" />\n      </svg>\n    );\n  },\n);\n\nHammer.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hammer;\n"
  },
  {
    "path": "src/icons/hand-index-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandIndexFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-index-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 4.466V1.75a1.75 1.75 0 1 0-3.5 0v5.34l-1.2.24a1.5 1.5 0 0 0-1.196 1.636l.345 3.106a2.5 2.5 0 0 0 .405 1.11l1.433 2.15A1.5 1.5 0 0 0 6.035 16h6.385a1.5 1.5 0 0 0 1.302-.756l1.395-2.441a3.5 3.5 0 0 0 .444-1.389l.271-2.715a2 2 0 0 0-1.99-2.199h-.581a5 5 0 0 0-.195-.248c-.191-.229-.51-.568-.88-.716-.364-.146-.846-.132-1.158-.108l-.132.012a1.26 1.26 0 0 0-.56-.642 2.6 2.6 0 0 0-.738-.288c-.31-.062-.739-.058-1.05-.046z\" />\n      </svg>\n    );\n  },\n);\n\nHandIndexFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandIndexFill;\n"
  },
  {
    "path": "src/icons/hand-index-thumb-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandIndexThumbFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-index-thumb-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 1.75v2.716l.047-.002c.312-.012.742-.016 1.051.046.28.056.543.18.738.288.273.152.456.385.56.642l.132-.012c.312-.024.794-.038 1.158.108.37.148.689.487.88.716q.113.137.195.248h.582a2 2 0 0 1 1.99 2.199l-.272 2.715a3.5 3.5 0 0 1-.444 1.389l-1.395 2.441A1.5 1.5 0 0 1 12.42 16H6.118a1.5 1.5 0 0 1-1.342-.83l-1.215-2.43L1.07 8.589a1.517 1.517 0 0 1 2.373-1.852L5 8.293V1.75a1.75 1.75 0 0 1 3.5 0\" />\n      </svg>\n    );\n  },\n);\n\nHandIndexThumbFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandIndexThumbFill;\n"
  },
  {
    "path": "src/icons/hand-index-thumb.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandIndexThumb = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-index-thumb', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.75 1a.75.75 0 0 1 .75.75V8a.5.5 0 0 0 1 0V5.467l.086-.004c.317-.012.637-.008.816.027.134.027.294.096.448.182.077.042.15.147.15.314V8a.5.5 0 0 0 1 0V6.435l.106-.01c.316-.024.584-.01.708.04.118.046.3.207.486.43.081.096.15.19.2.259V8.5a.5.5 0 1 0 1 0v-1h.342a1 1 0 0 1 .995 1.1l-.271 2.715a2.5 2.5 0 0 1-.317.991l-1.395 2.442a.5.5 0 0 1-.434.252H6.118a.5.5 0 0 1-.447-.276l-1.232-2.465-2.512-4.185a.517.517 0 0 1 .809-.631l2.41 2.41A.5.5 0 0 0 6 9.5V1.75A.75.75 0 0 1 6.75 1M8.5 4.466V1.75a1.75 1.75 0 1 0-3.5 0v6.543L3.443 6.736A1.517 1.517 0 0 0 1.07 8.588l2.491 4.153 1.215 2.43A1.5 1.5 0 0 0 6.118 16h6.302a1.5 1.5 0 0 0 1.302-.756l1.395-2.441a3.5 3.5 0 0 0 .444-1.389l.271-2.715a2 2 0 0 0-1.99-2.199h-.581a5 5 0 0 0-.195-.248c-.191-.229-.51-.568-.88-.716-.364-.146-.846-.132-1.158-.108l-.132.012a1.26 1.26 0 0 0-.56-.642 2.6 2.6 0 0 0-.738-.288c-.31-.062-.739-.058-1.05-.046zm2.094 2.025\" />\n      </svg>\n    );\n  },\n);\n\nHandIndexThumb.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandIndexThumb;\n"
  },
  {
    "path": "src/icons/hand-index.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandIndex = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-index', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.75 1a.75.75 0 0 1 .75.75V8a.5.5 0 0 0 1 0V5.467l.086-.004c.317-.012.637-.008.816.027.134.027.294.096.448.182.077.042.15.147.15.314V8a.5.5 0 1 0 1 0V6.435l.106-.01c.316-.024.584-.01.708.04.118.046.3.207.486.43.081.096.15.19.2.259V8.5a.5.5 0 0 0 1 0v-1h.342a1 1 0 0 1 .995 1.1l-.271 2.715a2.5 2.5 0 0 1-.317.991l-1.395 2.442a.5.5 0 0 1-.434.252H6.035a.5.5 0 0 1-.416-.223l-1.433-2.15a1.5 1.5 0 0 1-.243-.666l-.345-3.105a.5.5 0 0 1 .399-.546L5 8.11V9a.5.5 0 0 0 1 0V1.75A.75.75 0 0 1 6.75 1M8.5 4.466V1.75a1.75 1.75 0 1 0-3.5 0v5.34l-1.2.24a1.5 1.5 0 0 0-1.196 1.636l.345 3.106a2.5 2.5 0 0 0 .405 1.11l1.433 2.15A1.5 1.5 0 0 0 6.035 16h6.385a1.5 1.5 0 0 0 1.302-.756l1.395-2.441a3.5 3.5 0 0 0 .444-1.389l.271-2.715a2 2 0 0 0-1.99-2.199h-.581a5 5 0 0 0-.195-.248c-.191-.229-.51-.568-.88-.716-.364-.146-.846-.132-1.158-.108l-.132.012a1.26 1.26 0 0 0-.56-.642 2.6 2.6 0 0 0-.738-.288c-.31-.062-.739-.058-1.05-.046zm2.094 2.025\" />\n      </svg>\n    );\n  },\n);\n\nHandIndex.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandIndex;\n"
  },
  {
    "path": "src/icons/hand-thumbs-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandThumbsDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-thumbs-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.956 14.534c.065.936.952 1.659 1.908 1.42l.261-.065a1.38 1.38 0 0 0 1.012-.965c.22-.816.533-2.512.062-4.51q.205.03.443.051c.713.065 1.669.071 2.516-.211.518-.173.994-.68 1.2-1.272a1.9 1.9 0 0 0-.234-1.734c.058-.118.103-.242.138-.362.077-.27.113-.568.113-.856 0-.29-.036-.586-.113-.857a2 2 0 0 0-.16-.403c.169-.387.107-.82-.003-1.149a3.2 3.2 0 0 0-.488-.9c.054-.153.076-.313.076-.465a1.86 1.86 0 0 0-.253-.912C13.1.757 12.437.28 11.5.28H8c-.605 0-1.07.08-1.466.217a4.8 4.8 0 0 0-.97.485l-.048.029c-.504.308-.999.61-2.068.723C2.682 1.815 2 2.434 2 3.279v4c0 .851.685 1.433 1.357 1.616.849.232 1.574.787 2.132 1.41.56.626.914 1.28 1.039 1.638.199.575.356 1.54.428 2.591\" />\n      </svg>\n    );\n  },\n);\n\nHandThumbsDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandThumbsDownFill;\n"
  },
  {
    "path": "src/icons/hand-thumbs-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandThumbsDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-thumbs-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.864 15.674c-.956.24-1.843-.484-1.908-1.42-.072-1.05-.23-2.015-.428-2.59-.125-.36-.479-1.012-1.04-1.638-.557-.624-1.282-1.179-2.131-1.41C2.685 8.432 2 7.85 2 7V3c0-.845.682-1.464 1.448-1.546 1.07-.113 1.564-.415 2.068-.723l.048-.029c.272-.166.578-.349.97-.484C6.931.08 7.395 0 8 0h3.5c.937 0 1.599.478 1.934 1.064.164.287.254.607.254.913 0 .152-.023.312-.077.464.201.262.38.577.488.9.11.33.172.762.004 1.15.069.13.12.268.159.403.077.27.113.567.113.856s-.036.586-.113.856c-.035.12-.08.244-.138.363.394.571.418 1.2.234 1.733-.206.592-.682 1.1-1.2 1.272-.847.283-1.803.276-2.516.211a10 10 0 0 1-.443-.05 9.36 9.36 0 0 1-.062 4.51c-.138.508-.55.848-1.012.964zM11.5 1H8c-.51 0-.863.068-1.14.163-.281.097-.506.229-.776.393l-.04.025c-.555.338-1.198.73-2.49.868-.333.035-.554.29-.554.55V7c0 .255.226.543.62.65 1.095.3 1.977.997 2.614 1.709.635.71 1.064 1.475 1.238 1.977.243.7.407 1.768.482 2.85.025.362.36.595.667.518l.262-.065c.16-.04.258-.144.288-.255a8.34 8.34 0 0 0-.145-4.726.5.5 0 0 1 .595-.643h.003l.014.004.058.013a9 9 0 0 0 1.036.157c.663.06 1.457.054 2.11-.163.175-.059.45-.301.57-.651.107-.308.087-.67-.266-1.021L12.793 7l.353-.354c.043-.042.105-.14.154-.315.048-.167.075-.37.075-.581s-.027-.414-.075-.581c-.05-.174-.111-.273-.154-.315l-.353-.354.353-.354c.047-.047.109-.176.005-.488a2.2 2.2 0 0 0-.505-.804l-.353-.354.353-.354c.006-.005.041-.05.041-.17a.9.9 0 0 0-.121-.415C12.4 1.272 12.063 1 11.5 1\" />\n      </svg>\n    );\n  },\n);\n\nHandThumbsDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandThumbsDown;\n"
  },
  {
    "path": "src/icons/hand-thumbs-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandThumbsUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-thumbs-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.956 1.745C7.021.81 7.908.087 8.864.325l.261.066c.463.116.874.456 1.012.965.22.816.533 2.511.062 4.51a10 10 0 0 1 .443-.051c.713-.065 1.669-.072 2.516.21.518.173.994.681 1.2 1.273.184.532.16 1.162-.234 1.733q.086.18.138.363c.077.27.113.567.113.856s-.036.586-.113.856c-.039.135-.09.273-.16.404.169.387.107.819-.003 1.148a3.2 3.2 0 0 1-.488.901c.054.152.076.312.076.465 0 .305-.089.625-.253.912C13.1 15.522 12.437 16 11.5 16H8c-.605 0-1.07-.081-1.466-.218a4.8 4.8 0 0 1-.97-.484l-.048-.03c-.504-.307-.999-.609-2.068-.722C2.682 14.464 2 13.846 2 13V9c0-.85.685-1.432 1.357-1.615.849-.232 1.574-.787 2.132-1.41.56-.627.914-1.28 1.039-1.639.199-.575.356-1.539.428-2.59z\" />\n      </svg>\n    );\n  },\n);\n\nHandThumbsUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandThumbsUpFill;\n"
  },
  {
    "path": "src/icons/hand-thumbs-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandThumbsUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hand-thumbs-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.864.046C7.908-.193 7.02.53 6.956 1.466c-.072 1.051-.23 2.016-.428 2.59-.125.36-.479 1.013-1.04 1.639-.557.623-1.282 1.178-2.131 1.41C2.685 7.288 2 7.87 2 8.72v4.001c0 .845.682 1.464 1.448 1.545 1.07.114 1.564.415 2.068.723l.048.03c.272.165.578.348.97.484.397.136.861.217 1.466.217h3.5c.937 0 1.599-.477 1.934-1.064a1.86 1.86 0 0 0 .254-.912c0-.152-.023-.312-.077-.464.201-.263.38-.578.488-.901.11-.33.172-.762.004-1.149.069-.13.12-.269.159-.403.077-.27.113-.568.113-.857 0-.288-.036-.585-.113-.856a2 2 0 0 0-.138-.362 1.9 1.9 0 0 0 .234-1.734c-.206-.592-.682-1.1-1.2-1.272-.847-.282-1.803-.276-2.516-.211a10 10 0 0 0-.443.05 9.4 9.4 0 0 0-.062-4.509A1.38 1.38 0 0 0 9.125.111zM11.5 14.721H8c-.51 0-.863-.069-1.14-.164-.281-.097-.506-.228-.776-.393l-.04-.024c-.555-.339-1.198-.731-2.49-.868-.333-.036-.554-.29-.554-.55V8.72c0-.254.226-.543.62-.65 1.095-.3 1.977-.996 2.614-1.708.635-.71 1.064-1.475 1.238-1.978.243-.7.407-1.768.482-2.85.025-.362.36-.594.667-.518l.262.066c.16.04.258.143.288.255a8.34 8.34 0 0 1-.145 4.725.5.5 0 0 0 .595.644l.003-.001.014-.003.058-.014a9 9 0 0 1 1.036-.157c.663-.06 1.457-.054 2.11.164.175.058.45.3.57.65.107.308.087.67-.266 1.022l-.353.353.353.354c.043.043.105.141.154.315.048.167.075.37.075.581 0 .212-.027.414-.075.582-.05.174-.111.272-.154.315l-.353.353.353.354c.047.047.109.177.005.488a2.2 2.2 0 0 1-.505.805l-.353.353.353.354c.006.005.041.05.041.17a.9.9 0 0 1-.121.416c-.165.288-.503.56-1.066.56z\" />\n      </svg>\n    );\n  },\n);\n\nHandThumbsUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandThumbsUp;\n"
  },
  {
    "path": "src/icons/handbag-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HandbagFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-handbag-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a2 2 0 0 0-2 2v2H5V3a3 3 0 1 1 6 0v2h-1V3a2 2 0 0 0-2-2M5 5H3.36a1.5 1.5 0 0 0-1.483 1.277L.85 13.13A2.5 2.5 0 0 0 3.322 16h9.355a2.5 2.5 0 0 0 2.473-2.87l-1.028-6.853A1.5 1.5 0 0 0 12.64 5H11v1.5a.5.5 0 0 1-1 0V5H6v1.5a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nHandbagFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HandbagFill;\n"
  },
  {
    "path": "src/icons/handbag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Handbag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-handbag', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a2 2 0 0 1 2 2v2H6V3a2 2 0 0 1 2-2m3 4V3a3 3 0 1 0-6 0v2H3.36a1.5 1.5 0 0 0-1.483 1.277L.85 13.13A2.5 2.5 0 0 0 3.322 16h9.355a2.5 2.5 0 0 0 2.473-2.87l-1.028-6.853A1.5 1.5 0 0 0 12.64 5zm-1 1v1.5a.5.5 0 0 0 1 0V6h1.639a.5.5 0 0 1 .494.426l1.028 6.851A1.5 1.5 0 0 1 12.678 15H3.322a1.5 1.5 0 0 1-1.483-1.723l1.028-6.851A.5.5 0 0 1 3.36 6H5v1.5a.5.5 0 1 0 1 0V6z\" />\n      </svg>\n    );\n  },\n);\n\nHandbag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Handbag;\n"
  },
  {
    "path": "src/icons/hash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.39 12.648a1 1 0 0 0-.015.18c0 .305.21.508.5.508.266 0 .492-.172.555-.477l.554-2.703h1.204c.421 0 .617-.234.617-.547 0-.312-.188-.53-.617-.53h-.985l.516-2.524h1.265c.43 0 .618-.227.618-.547 0-.313-.188-.524-.618-.524h-1.046l.476-2.304a1 1 0 0 0 .016-.164.51.51 0 0 0-.516-.516.54.54 0 0 0-.539.43l-.523 2.554H7.617l.477-2.304c.008-.04.015-.118.015-.164a.51.51 0 0 0-.523-.516.54.54 0 0 0-.531.43L6.53 5.484H5.414c-.43 0-.617.22-.617.532s.187.539.617.539h.906l-.515 2.523H4.609c-.421 0-.609.219-.609.531s.188.547.61.547h.976l-.516 2.492c-.008.04-.015.125-.015.18 0 .305.21.508.5.508.265 0 .492-.172.554-.477l.555-2.703h2.242zm-1-6.109h2.266l-.515 2.563H6.859l.532-2.563z\" />\n      </svg>\n    );\n  },\n);\n\nHash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hash;\n"
  },
  {
    "path": "src/icons/hdd-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 10a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2.5 1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M.91 7.204A3 3 0 0 1 2 7h12c.384 0 .752.072 1.09.204l-1.867-3.422A1.5 1.5 0 0 0 11.906 3H4.094a1.5 1.5 0 0 0-1.317.782z\" />\n      </svg>\n    );\n  },\n);\n\nHddFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddFill;\n"
  },
  {
    "path": "src/icons/hdd-network-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddNetworkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-network-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h5.5v3A1.5 1.5 0 0 0 6 11.5H.5a.5.5 0 0 0 0 1H6A1.5 1.5 0 0 0 7.5 14h1a1.5 1.5 0 0 0 1.5-1.5h5.5a.5.5 0 0 0 0-1H10A1.5 1.5 0 0 0 8.5 10V7H14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm.5 3a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m2 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1\" />\n      </svg>\n    );\n  },\n);\n\nHddNetworkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddNetworkFill;\n"
  },
  {
    "path": "src/icons/hdd-network.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddNetwork = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-network', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M3 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2H8.5v3a1.5 1.5 0 0 1 1.5 1.5h5.5a.5.5 0 0 1 0 1H10A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5H.5a.5.5 0 0 1 0-1H6A1.5 1.5 0 0 1 7.5 10V7H2a2 2 0 0 1-2-2zm1 0v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1m6 7.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nHddNetwork.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddNetwork;\n"
  },
  {
    "path": "src/icons/hdd-rack-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddRackFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-rack-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v2H2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2h-1V7h1a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm.5 3a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m2 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m-2 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m2 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1M12 7v2H4V7z\" />\n      </svg>\n    );\n  },\n);\n\nHddRackFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddRackFill;\n"
  },
  {
    "path": "src/icons/hdd-rack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddRack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-rack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M3 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m2 7a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-2.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v2H2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2h-1V7h1a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm13 2v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1m0 7v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1m-3-4v2H4V7z\" />\n      </svg>\n    );\n  },\n);\n\nHddRack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddRack;\n"
  },
  {
    "path": "src/icons/hdd-stack-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddStackFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-stack-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 9a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2zm.5 3a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m2 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1M2 2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm.5 3a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m2 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1\" />\n      </svg>\n    );\n  },\n);\n\nHddStackFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddStackFill;\n"
  },
  {
    "path": "src/icons/hdd-stack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HddStack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd-stack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 10a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1zM2 9a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2z\" />\n        <path d=\"M5 11.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-2 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M14 3a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n        <path d=\"M5 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-2 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nHddStack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HddStack;\n"
  },
  {
    "path": "src/icons/hdd.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdd', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M3 10.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M16 11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V9.51c0-.418.105-.83.305-1.197l2.472-4.531A1.5 1.5 0 0 1 4.094 3h7.812a1.5 1.5 0 0 1 1.317.782l2.472 4.53c.2.368.305.78.305 1.198zM3.655 4.26 1.592 8.043Q1.79 8 2 8h12q.21 0 .408.042L12.345 4.26a.5.5 0 0 0-.439-.26H4.094a.5.5 0 0 0-.44.26zM1 10v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nHdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hdd;\n"
  },
  {
    "path": "src/icons/hdmi-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HdmiFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdmi-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 5a1 1 0 0 0-1 1v3.293c0 .39.317.707.707.707.188 0 .368.075.5.207l.5.5a1 1 0 0 0 .707.293h11.172a1 1 0 0 0 .707-.293l.5-.5a.7.7 0 0 1 .5-.207c.39 0 .707-.317.707-.707V6a1 1 0 0 0-1-1zm1.5 2h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nHdmiFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HdmiFill;\n"
  },
  {
    "path": "src/icons/hdmi.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hdmi = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hdmi', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 7a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1z\" />\n        <path d=\"M1 5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h.293l.707.707a1 1 0 0 0 .707.293h10.586a1 1 0 0 0 .707-.293l.707-.707H15a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm0 1h14v3h-.293a1 1 0 0 0-.707.293l-.707.707H2.707L2 9.293A1 1 0 0 0 1.293 9H1z\" />\n      </svg>\n    );\n  },\n);\n\nHdmi.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hdmi;\n"
  },
  {
    "path": "src/icons/headphones.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Headphones = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-headphones', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a6 6 0 1 1 12 0v5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h1V8a5 5 0 0 0-5-5\" />\n      </svg>\n    );\n  },\n);\n\nHeadphones.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Headphones;\n"
  },
  {
    "path": "src/icons/headset-vr.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeadsetVr = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-headset-vr', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1.248c1.857 0 3.526.641 4.65 1.794a5 5 0 0 1 2.518 1.09C13.907 1.482 11.295 0 8 0 4.75 0 2.12 1.48.844 4.122a5 5 0 0 1 2.289-1.047C4.236 1.872 5.974 1.248 8 1.248\" />\n        <path d=\"M12 12a4 4 0 0 1-2.786-1.13l-.002-.002a1.6 1.6 0 0 0-.276-.167A2.2 2.2 0 0 0 8 10.5c-.414 0-.729.103-.935.201a1.6 1.6 0 0 0-.277.167l-.002.002A4 4 0 1 1 4 4h8a4 4 0 0 1 0 8\" />\n      </svg>\n    );\n  },\n);\n\nHeadsetVr.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeadsetVr;\n"
  },
  {
    "path": "src/icons/headset.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Headset = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-headset', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a6 6 0 1 1 12 0v6a2.5 2.5 0 0 1-2.5 2.5H9.366a1 1 0 0 1-.866.5h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 .866.5H11.5A1.5 1.5 0 0 0 13 12h-1a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h1V6a5 5 0 0 0-5-5\" />\n      </svg>\n    );\n  },\n);\n\nHeadset.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Headset;\n"
  },
  {
    "path": "src/icons/heart-arrow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartArrow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart-arrow', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.707 9h4.364c-.536 1.573 2.028 3.806 4.929-.5-2.9-4.306-5.465-2.073-4.929-.5H6.707L4.854 6.146a.5.5 0 1 0-.708.708L5.293 8h-.586L2.854 6.146a.5.5 0 1 0-.708.708L3.293 8h-.586L.854 6.146a.5.5 0 1 0-.708.708L1.793 8.5.146 10.146a.5.5 0 0 0 .708.708L2.707 9h.586l-1.147 1.146a.5.5 0 0 0 .708.708L4.707 9h.586l-1.147 1.146a.5.5 0 0 0 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nHeartArrow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartArrow;\n"
  },
  {
    "path": "src/icons/heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314\"\n        />\n      </svg>\n    );\n  },\n);\n\nHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartFill;\n"
  },
  {
    "path": "src/icons/heart-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart-half', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2.748v11.047c3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143q.09.083.176.171a3 3 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15\" />\n      </svg>\n    );\n  },\n);\n\nHeartHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartHalf;\n"
  },
  {
    "path": "src/icons/heart-pulse-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartPulseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart-pulse-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.475 9C2.702 10.84 4.779 12.871 8 15c3.221-2.129 5.298-4.16 6.525-6H12a.5.5 0 0 1-.464-.314l-1.457-3.642-1.598 5.593a.5.5 0 0 1-.945.049L5.889 6.568l-1.473 2.21A.5.5 0 0 1 4 9z\" />\n        <path d=\"M.88 8C-2.427 1.68 4.41-2 7.823 1.143q.09.083.176.171a3 3 0 0 1 .176-.17C11.59-2 18.426 1.68 15.12 8h-2.783l-1.874-4.686a.5.5 0 0 0-.945.049L7.921 8.956 6.464 5.314a.5.5 0 0 0-.88-.091L3.732 8z\" />\n      </svg>\n    );\n  },\n);\n\nHeartPulseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartPulseFill;\n"
  },
  {
    "path": "src/icons/heart-pulse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartPulse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart-pulse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053.918 3.995.78 5.323 1.508 7H.43c-2.128-5.697 4.165-8.83 7.394-5.857q.09.083.176.171a3 3 0 0 1 .176-.17c3.23-2.974 9.522.159 7.394 5.856h-1.078c.728-1.677.59-3.005.108-3.947C13.486.878 10.4.28 8.717 2.01zM2.212 10h1.315C4.593 11.183 6.05 12.458 8 13.795c1.949-1.337 3.407-2.612 4.473-3.795h1.315c-1.265 1.566-3.14 3.25-5.788 5-2.648-1.75-4.523-3.434-5.788-5\" />\n        <path d=\"M10.464 3.314a.5.5 0 0 0-.945.049L7.921 8.956 6.464 5.314a.5.5 0 0 0-.88-.091L3.732 8H.5a.5.5 0 0 0 0 1H4a.5.5 0 0 0 .416-.223l1.473-2.209 1.647 4.118a.5.5 0 0 0 .945-.049l1.598-5.593 1.457 3.642A.5.5 0 0 0 12 9h3.5a.5.5 0 0 0 0-1h-3.162z\" />\n      </svg>\n    );\n  },\n);\n\nHeartPulse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartPulse;\n"
  },
  {
    "path": "src/icons/heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Heart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143q.09.083.176.171a3 3 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15\" />\n      </svg>\n    );\n  },\n);\n\nHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Heart;\n"
  },
  {
    "path": "src/icons/heartbreak-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeartbreakFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heartbreak-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.931.586 7 3l1.5 4-2 3L8 15C22.534 5.396 13.757-2.21 8.931.586M7.358.77 5.5 3 7 7l-1.5 3 1.815 4.537C-6.533 4.96 2.685-2.467 7.358.77\" />\n      </svg>\n    );\n  },\n);\n\nHeartbreakFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeartbreakFill;\n"
  },
  {
    "path": "src/icons/heartbreak.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Heartbreak = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heartbreak', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.867 14.41c13.308-9.322 4.79-16.563.064-13.824L7 3l1.5 4-2 3L8 15a38 38 0 0 0 .867-.59m-.303-1.01-.971-3.237 1.74-2.608a1 1 0 0 0 .103-.906l-1.3-3.468 1.45-1.813c1.861-.948 4.446.002 5.197 2.11.691 1.94-.055 5.521-6.219 9.922m-1.25 1.137a36 36 0 0 1-1.522-1.116C-5.077 4.97 1.842-1.472 6.454.293c.314.12.618.279.904.477L5.5 3 7 7l-1.5 3zm-2.3-3.06-.442-1.106a1 1 0 0 1 .034-.818l1.305-2.61L4.564 3.35a1 1 0 0 1 .168-.991l1.032-1.24c-1.688-.449-3.7.398-4.456 2.128-.711 1.627-.413 4.55 3.706 8.229Z\" />\n      </svg>\n    );\n  },\n);\n\nHeartbreak.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Heartbreak;\n"
  },
  {
    "path": "src/icons/hearts.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hearts = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hearts', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.931.481c1.627-1.671 5.692 1.254 0 5.015-5.692-3.76-1.626-6.686 0-5.015m6.84 1.794c1.084-1.114 3.795.836 0 3.343-3.795-2.507-1.084-4.457 0-3.343M7.84 7.642c2.71-2.786 9.486 2.09 0 8.358-9.487-6.268-2.71-11.144 0-8.358\"\n        />\n      </svg>\n    );\n  },\n);\n\nHearts.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hearts;\n"
  },
  {
    "path": "src/icons/heptagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeptagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heptagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.779.052a.5.5 0 0 1 .442 0l6.015 2.97a.5.5 0 0 1 .267.34l1.485 6.676a.5.5 0 0 1-.093.415l-4.162 5.354a.5.5 0 0 1-.395.193H4.662a.5.5 0 0 1-.395-.193L.105 10.453a.5.5 0 0 1-.093-.415l1.485-6.676a.5.5 0 0 1 .267-.34z\"\n        />\n      </svg>\n    );\n  },\n);\n\nHeptagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeptagonFill;\n"
  },
  {
    "path": "src/icons/heptagon-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HeptagonHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heptagon-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.779.052a.5.5 0 0 1 .442 0l6.015 2.97a.5.5 0 0 1 .267.34l1.485 6.676a.5.5 0 0 1-.093.415l-4.162 5.354a.5.5 0 0 1-.395.193H4.662a.5.5 0 0 1-.395-.193L.105 10.453a.5.5 0 0 1-.093-.415l1.485-6.676a.5.5 0 0 1 .267-.34zM8 15h3.093l3.868-4.975-1.383-6.212L8 1.058z\" />\n      </svg>\n    );\n  },\n);\n\nHeptagonHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HeptagonHalf;\n"
  },
  {
    "path": "src/icons/heptagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Heptagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-heptagon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.779.052a.5.5 0 0 1 .442 0l6.015 2.97a.5.5 0 0 1 .267.34l1.485 6.676a.5.5 0 0 1-.093.415l-4.162 5.354a.5.5 0 0 1-.395.193H4.662a.5.5 0 0 1-.395-.193L.105 10.453a.5.5 0 0 1-.093-.415l1.485-6.676a.5.5 0 0 1 .267-.34zM2.422 3.813l-1.383 6.212L4.907 15h6.186l3.868-4.975-1.383-6.212L8 1.058z\" />\n      </svg>\n    );\n  },\n);\n\nHeptagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Heptagon;\n"
  },
  {
    "path": "src/icons/hexagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HexagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hexagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.5.134a1 1 0 0 0-1 0l-6 3.577a1 1 0 0 0-.5.866v6.846a1 1 0 0 0 .5.866l6 3.577a1 1 0 0 0 1 0l6-3.577a1 1 0 0 0 .5-.866V4.577a1 1 0 0 0-.5-.866z\"\n        />\n      </svg>\n    );\n  },\n);\n\nHexagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HexagonFill;\n"
  },
  {
    "path": "src/icons/hexagon-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HexagonHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hexagon-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.577v6.846L8 15V1zM8.5.134a1 1 0 0 0-1 0l-6 3.577a1 1 0 0 0-.5.866v6.846a1 1 0 0 0 .5.866l6 3.577a1 1 0 0 0 1 0l6-3.577a1 1 0 0 0 .5-.866V4.577a1 1 0 0 0-.5-.866z\" />\n      </svg>\n    );\n  },\n);\n\nHexagonHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HexagonHalf;\n"
  },
  {
    "path": "src/icons/hexagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hexagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hexagon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 4.577v6.846L8 15l-6-3.577V4.577L8 1zM8.5.134a1 1 0 0 0-1 0l-6 3.577a1 1 0 0 0-.5.866v6.846a1 1 0 0 0 .5.866l6 3.577a1 1 0 0 0 1 0l6-3.577a1 1 0 0 0 .5-.866V4.577a1 1 0 0 0-.5-.866z\" />\n      </svg>\n    );\n  },\n);\n\nHexagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hexagon;\n"
  },
  {
    "path": "src/icons/highlighter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Highlighter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-highlighter', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nHighlighter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Highlighter;\n"
  },
  {
    "path": "src/icons/highlights.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Highlights = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-highlights', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-8 5v1H4.5a.5.5 0 0 0-.093.009A7 7 0 0 1 3.1 13zm0-1H2.255a7 7 0 0 1-.581-1H8zm-6.71-2a7 7 0 0 1-.22-1H8v1zM1 8q0-.51.07-1H8v1zm.29-2q.155-.519.384-1H8v1zm.965-2q.377-.54.846-1H8v1zm2.137-2A6.97 6.97 0 0 1 8 1v1z\" />\n      </svg>\n    );\n  },\n);\n\nHighlights.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Highlights;\n"
  },
  {
    "path": "src/icons/hospital-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HospitalFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hospital-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 0a1 1 0 0 0-1 1v1a1 1 0 0 0-1 1v4H1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h6v-2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5V16h6a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-3V3a1 1 0 0 0-1-1V1a1 1 0 0 0-1-1zm2.5 5.034v1.1l.953-.55.5.867L9 7l.953.55-.5.866-.953-.55v1.1h-1v-1.1l-.953.55-.5-.866L7 7l-.953-.55.5-.866.953.55v-1.1zM2.25 9h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 2 9.75v-.5A.25.25 0 0 1 2.25 9m0 2h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-.5a.25.25 0 0 1 .25-.25M2 13.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zM13.25 9h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-.5a.25.25 0 0 1 .25-.25M13 11.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm.25 1.75h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-.5a.25.25 0 0 1 .25-.25\" />\n      </svg>\n    );\n  },\n);\n\nHospitalFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HospitalFill;\n"
  },
  {
    "path": "src/icons/hospital.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hospital = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hospital', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5.034v1.1l.953-.55.5.867L9 7l.953.55-.5.866-.953-.55v1.1h-1v-1.1l-.953.55-.5-.866L7 7l-.953-.55.5-.866.953.55v-1.1zM13.25 9a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zM13 11.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm.25 1.75a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zm-11-4a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 9.75v-.5A.25.25 0 0 0 2.75 9zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zM2 13.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25z\" />\n        <path d=\"M5 1a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 1 1v4h3a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h3V3a1 1 0 0 1 1-1zm2 14h2v-3H7zm3 0h1V3H5v12h1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1zm0-14H6v1h4zm2 7v7h3V8zm-8 7V8H1v7z\" />\n      </svg>\n    );\n  },\n);\n\nHospital.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hospital;\n"
  },
  {
    "path": "src/icons/hourglass-bottom.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HourglassBottom = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hourglass-bottom', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1h-11a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1-.5-.5m2.5.5v1a3.5 3.5 0 0 0 1.989 3.158c.533.256 1.011.791 1.011 1.491v.702s.18.149.5.149.5-.15.5-.15v-.7c0-.701.478-1.236 1.011-1.492A3.5 3.5 0 0 0 11.5 3V2z\" />\n      </svg>\n    );\n  },\n);\n\nHourglassBottom.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HourglassBottom;\n"
  },
  {
    "path": "src/icons/hourglass-split.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HourglassSplit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hourglass-split', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 15a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1zm2-13v1c0 .537.12 1.045.337 1.5h6.326c.216-.455.337-.963.337-1.5V2zm3 6.35c0 .701-.478 1.236-1.011 1.492A3.5 3.5 0 0 0 4.5 13s.866-1.299 3-1.48zm1 0v3.17c2.134.181 3 1.48 3 1.48a3.5 3.5 0 0 0-1.989-3.158C8.978 9.586 8.5 9.052 8.5 8.351z\" />\n      </svg>\n    );\n  },\n);\n\nHourglassSplit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HourglassSplit;\n"
  },
  {
    "path": "src/icons/hourglass-top.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HourglassTop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hourglass-top', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 14.5a.5.5 0 0 0 .5.5h11a.5.5 0 1 0 0-1h-1v-1a4.5 4.5 0 0 0-2.557-4.06c-.29-.139-.443-.377-.443-.59v-.7c0-.213.154-.451.443-.59A4.5 4.5 0 0 0 12.5 3V2h1a.5.5 0 0 0 0-1h-11a.5.5 0 0 0 0 1h1v1a4.5 4.5 0 0 0 2.557 4.06c.29.139.443.377.443.59v.7c0 .213-.154.451-.443.59A4.5 4.5 0 0 0 3.5 13v1h-1a.5.5 0 0 0-.5.5m2.5-.5v-1a3.5 3.5 0 0 1 1.989-3.158c.533-.256 1.011-.79 1.011-1.491v-.702s.18.101.5.101.5-.1.5-.1v.7c0 .701.478 1.236 1.011 1.492A3.5 3.5 0 0 1 11.5 13v1z\" />\n      </svg>\n    );\n  },\n);\n\nHourglassTop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HourglassTop;\n"
  },
  {
    "path": "src/icons/hourglass.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hourglass = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hourglass', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1h-11a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1-.5-.5m2.5.5v1a3.5 3.5 0 0 0 1.989 3.158c.533.256 1.011.791 1.011 1.491v.702c0 .7-.478 1.235-1.011 1.491A3.5 3.5 0 0 0 4.5 13v1h7v-1a3.5 3.5 0 0 0-1.989-3.158C8.978 9.586 8.5 9.052 8.5 8.351v-.702c0-.7.478-1.235 1.011-1.491A3.5 3.5 0 0 0 11.5 3V2z\" />\n      </svg>\n    );\n  },\n);\n\nHourglass.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hourglass;\n"
  },
  {
    "path": "src/icons/house-add-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseAddFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-add-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 1 1-1 0v-1h-1a.5.5 0 1 1 0-1h1v-1a.5.5 0 0 1 1 0\" />\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n      </svg>\n    );\n  },\n);\n\nHouseAddFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseAddFill;\n"
  },
  {
    "path": "src/icons/house-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-add', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L2 8.207V13.5A1.5 1.5 0 0 0 3.5 15h4a.5.5 0 1 0 0-1h-4a.5.5 0 0 1-.5-.5V7.207l5-5 6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 1 0 1 0v-1h1a.5.5 0 1 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nHouseAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseAdd;\n"
  },
  {
    "path": "src/icons/house-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.707l.547.547 1.17-1.951a.5.5 0 1 1 .858.514\" />\n      </svg>\n    );\n  },\n);\n\nHouseCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseCheckFill;\n"
  },
  {
    "path": "src/icons/house-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.707l.547.547 1.17-1.951a.5.5 0 1 1 .858.514\" />\n      </svg>\n    );\n  },\n);\n\nHouseCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseCheck;\n"
  },
  {
    "path": "src/icons/house-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 1 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nHouseDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDashFill;\n"
  },
  {
    "path": "src/icons/house-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-dash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 1 1 0-1\" />\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nHouseDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDash;\n"
  },
  {
    "path": "src/icons/house-door-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDoorFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-door-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nHouseDoorFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDoorFill;\n"
  },
  {
    "path": "src/icons/house-door.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDoor = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-door', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-4h2v4a.5.5 0 0 0 .5.5H14a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293zM2.5 14V7.707l5.5-5.5 5.5 5.5V14H10v-4a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v4z\" />\n      </svg>\n    );\n  },\n);\n\nHouseDoor.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDoor;\n"
  },
  {
    "path": "src/icons/house-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.707l-.646.646V10.5a.5.5 0 0 0-1 0v2.793l-.646-.646a.5.5 0 0 0-.708.707l1.5 1.5a.5.5 0 0 0 .708 0\" />\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n      </svg>\n    );\n  },\n);\n\nHouseDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDownFill;\n"
  },
  {
    "path": "src/icons/house-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.707l-.646.646V10.5a.5.5 0 0 0-1 0v2.793l-.646-.646a.5.5 0 0 0-.708.707l1.5 1.5a.5.5 0 0 0 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nHouseDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseDown;\n"
  },
  {
    "path": "src/icons/house-exclamation-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseExclamationFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-exclamation-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 1 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nHouseExclamationFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseExclamationFill;\n"
  },
  {
    "path": "src/icons/house-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 1 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nHouseExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseExclamation;\n"
  },
  {
    "path": "src/icons/house-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n      </svg>\n    );\n  },\n);\n\nHouseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseFill;\n"
  },
  {
    "path": "src/icons/house-gear-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseGearFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-gear-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207 1.354 8.854a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M11.07 9.047a1.5 1.5 0 0 0-1.742.26l-.02.021a1.5 1.5 0 0 0-.261 1.742 1.5 1.5 0 0 0 0 2.86 1.5 1.5 0 0 0-.12 1.07H3.5A1.5 1.5 0 0 1 2 13.5V9.293l6-6 4.724 4.724a1.5 1.5 0 0 0-1.654 1.03\" />\n        <path d=\"m13.158 9.608-.043-.148c-.181-.613-1.049-.613-1.23 0l-.043.148a.64.64 0 0 1-.921.382l-.136-.074c-.561-.306-1.175.308-.87.869l.075.136a.64.64 0 0 1-.382.92l-.148.045c-.613.18-.613 1.048 0 1.229l.148.043a.64.64 0 0 1 .382.921l-.074.136c-.306.561.308 1.175.869.87l.136-.075a.64.64 0 0 1 .92.382l.045.149c.18.612 1.048.612 1.229 0l.043-.15a.64.64 0 0 1 .921-.38l.136.074c.561.305 1.175-.309.87-.87l-.075-.136a.64.64 0 0 1 .382-.92l.149-.044c.612-.181.612-1.049 0-1.23l-.15-.043a.64.64 0 0 1-.38-.921l.074-.136c.305-.561-.309-1.175-.87-.87l-.136.075a.64.64 0 0 1-.92-.382ZM12.5 14a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nHouseGearFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseGearFill;\n"
  },
  {
    "path": "src/icons/house-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-gear', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M11.886 9.46c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.044c-.613-.181-.613-1.049 0-1.23l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nHouseGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseGear;\n"
  },
  {
    "path": "src/icons/house-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.707L8 2.207 1.354 8.853a.5.5 0 1 1-.708-.707z\" />\n        <path d=\"m14 9.293-6-6-6 6V13.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5zm-6-.811c1.664-1.673 5.825 1.254 0 5.018-5.825-3.764-1.664-6.691 0-5.018\" />\n      </svg>\n    );\n  },\n);\n\nHouseHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseHeartFill;\n"
  },
  {
    "path": "src/icons/house-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6.982C9.664 5.309 13.825 8.236 8 12 2.175 8.236 6.336 5.309 8 6.982\" />\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.707L2 8.207V13.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V8.207l.646.646a.5.5 0 0 0 .708-.707L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293zM13 7.207V13.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V7.207l5-5z\" />\n      </svg>\n    );\n  },\n);\n\nHouseHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseHeart;\n"
  },
  {
    "path": "src/icons/house-lock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseLockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-lock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.72 4.72a3 3 0 0 0-2.709 3.248A2 2 0 0 0 9 13v2H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M13 9a2 2 0 0 0-2 2v1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1v-1a2 2 0 0 0-2-2m0 1a1 1 0 0 1 1 1v1h-2v-1a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nHouseLockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseLockFill;\n"
  },
  {
    "path": "src/icons/house-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-lock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M10 13a1 1 0 0 1 1-1v-1a2 2 0 0 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nHouseLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseLock;\n"
  },
  {
    "path": "src/icons/house-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M13.879 10.414a2.5 2.5 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95Z\" />\n      </svg>\n    );\n  },\n);\n\nHouseSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseSlashFill;\n"
  },
  {
    "path": "src/icons/house-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.5 2.5 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95Z\" />\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nHouseSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseSlash;\n"
  },
  {
    "path": "src/icons/house-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 1 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.707l1.5-1.5a.5.5 0 0 1 .708 0Z\" />\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n      </svg>\n    );\n  },\n);\n\nHouseUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseUpFill;\n"
  },
  {
    "path": "src/icons/house-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 1 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.707l1.5-1.5a.5.5 0 0 1 .708 0Z\" />\n      </svg>\n    );\n  },\n);\n\nHouseUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseUp;\n"
  },
  {
    "path": "src/icons/house-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293z\" />\n        <path d=\"m8 3.293 4.712 4.712A4.5 4.5 0 0 0 8.758 15H3.5A1.5 1.5 0 0 1 2 13.5V9.293z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.646a.5.5 0 0 1 .708.707l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.707l.647-.647-.647-.646a.5.5 0 0 1 .708-.707Z\" />\n      </svg>\n    );\n  },\n);\n\nHouseXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseXFill;\n"
  },
  {
    "path": "src/icons/house-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HouseX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 2 13.5V8.207l-.646.647a.5.5 0 1 1-.708-.708z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.646a.5.5 0 0 1 .708.707l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.707l.647-.647-.647-.646a.5.5 0 0 1 .708-.707Z\" />\n      </svg>\n    );\n  },\n);\n\nHouseX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HouseX;\n"
  },
  {
    "path": "src/icons/house.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst House = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-house', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L2 8.207V13.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V8.207l.646.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293zM13 7.207V13.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V7.207l5-5z\" />\n      </svg>\n    );\n  },\n);\n\nHouse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default House;\n"
  },
  {
    "path": "src/icons/houses-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst HousesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-houses-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.207 1a1 1 0 0 0-1.414 0L.146 6.646a.5.5 0 0 0 .708.708L1 7.207V12.5A1.5 1.5 0 0 0 2.5 14h.55a2.5 2.5 0 0 1-.05-.5V9.415a1.5 1.5 0 0 1-.56-2.475l5.353-5.354z\" />\n        <path d=\"M8.793 2a1 1 0 0 1 1.414 0L12 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l1.854 1.853a.5.5 0 0 1-.708.708L15 8.207V13.5a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 4 13.5V8.207l-.146.147a.5.5 0 1 1-.708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nHousesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default HousesFill;\n"
  },
  {
    "path": "src/icons/houses.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Houses = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-houses', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.793 1a1 1 0 0 1 1.414 0l.647.646a.5.5 0 1 1-.708.708L6.5 1.707 2 6.207V12.5a.5.5 0 0 0 .5.5.5.5 0 0 1 0 1A1.5 1.5 0 0 1 1 12.5V7.207l-.146.147a.5.5 0 0 1-.708-.708zm3 1a1 1 0 0 1 1.414 0L12 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3.293l1.854 1.853a.5.5 0 0 1-.708.708L15 8.207V13.5a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 4 13.5V8.207l-.146.147a.5.5 0 1 1-.708-.708zm.707.707L5 7.207V13.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V7.207z\" />\n      </svg>\n    );\n  },\n);\n\nHouses.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Houses;\n"
  },
  {
    "path": "src/icons/hr.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hr = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hr', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 3H4a1 1 0 0 0-1 1v2.5H2V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2.5h-1V4a1 1 0 0 0-1-1M2 9.5h1V12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V9.5h1V12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm-1.5-2a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nHr.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hr;\n"
  },
  {
    "path": "src/icons/hurricane.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hurricane = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hurricane', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.999 2.6A5.5 5.5 0 0 1 15 7.5a.5.5 0 0 0 1 0 6.5 6.5 0 1 0-13 0 5 5 0 0 0 6.001 4.9A5.5 5.5 0 0 1 1 7.5a.5.5 0 0 0-1 0 6.5 6.5 0 1 0 13 0 5 5 0 0 0-6.001-4.9M10 7.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nHurricane.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hurricane;\n"
  },
  {
    "path": "src/icons/hypnotize.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Hypnotize = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-hypnotize', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.949 7.998.006-.003.003.009zm.025-.028v-.03l.018.01zm0 .015.04-.022.01.006v.04l-.029.016-.021-.012zm.049.057v-.014l-.008.01zm-.05-.008h.006l-.006.004z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M4.965 1.69a6.97 6.97 0 0 1 3.861-.642c.722.767 1.177 1.887 1.177 3.135 0 1.656-.802 3.088-1.965 3.766 1.263.24 2.655-.815 3.406-2.742.38-.975.537-2.023.492-2.996a7.03 7.03 0 0 1 2.488 3.003c-.303 1.01-1.046 1.966-2.128 2.59-1.44.832-3.09.85-4.26.173l.008.021.012-.006-.01.01c.42 1.218 2.032 1.9 4.08 1.586a7.4 7.4 0 0 0 2.856-1.081 6.96 6.96 0 0 1-1.358 3.662c-1.03.248-2.235.084-3.322-.544-1.433-.827-2.272-2.236-2.279-3.58l-.012-.003c-.845.972-.63 2.71.666 4.327a7.4 7.4 0 0 0 2.37 1.935 6.97 6.97 0 0 1-3.86.65c-.727-.767-1.186-1.892-1.186-3.146 0-1.658.804-3.091 1.969-3.768l-.002-.007c-1.266-.25-2.666.805-3.42 2.74a7.4 7.4 0 0 0-.49 3.012 7.03 7.03 0 0 1-2.49-3.018C1.87 9.757 2.613 8.8 3.696 8.174c1.438-.83 3.084-.85 4.253-.176l.005-.006C7.538 6.77 5.924 6.085 3.872 6.4c-1.04.16-2.03.55-2.853 1.08a6.96 6.96 0 0 1 1.372-3.667l-.002.003c1.025-.243 2.224-.078 3.306.547 1.43.826 2.269 2.23 2.28 3.573L8 7.941c.837-.974.62-2.706-.673-4.319a7.4 7.4 0 0 0-2.362-1.931Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nHypnotize.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Hypnotize;\n"
  },
  {
    "path": "src/icons/image-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ImageAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-image-alt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0m4.225 4.053a.5.5 0 0 0-.577.093l-3.71 4.71-2.66-2.772a.5.5 0 0 0-.63.062L.002 13v2a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.5z\" />\n      </svg>\n    );\n  },\n);\n\nImageAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ImageAlt;\n"
  },
  {
    "path": "src/icons/image-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ImageFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-image-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.002 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2zm1 9v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062zm5-6.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nImageFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ImageFill;\n"
  },
  {
    "path": "src/icons/image.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Image = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-image', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n        <path d=\"M2.002 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v6.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12V3a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nImage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Image;\n"
  },
  {
    "path": "src/icons/images.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Images = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-images', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.502 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"M14.002 13a2 2 0 0 1-2 2h-10a2 2 0 0 1-2-2V5A2 2 0 0 1 2 3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v8a2 2 0 0 1-1.998 2M14 2H4a1 1 0 0 0-1 1h9.002a2 2 0 0 1 2 2v7A1 1 0 0 0 15 11V3a1 1 0 0 0-1-1M2.002 4a1 1 0 0 0-1 1v8l2.646-2.354a.5.5 0 0 1 .63-.062l2.66 1.773 3.71-3.71a.5.5 0 0 1 .577-.094l1.777 1.947V5a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nImages.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Images;\n"
  },
  {
    "path": "src/icons/inbox-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InboxFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-inbox-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.98 4a.5.5 0 0 0-.39.188L1.54 8H6a.5.5 0 0 1 .5.5 1.5 1.5 0 1 0 3 0A.5.5 0 0 1 10 8h4.46l-3.05-3.812A.5.5 0 0 0 11.02 4zm-1.17-.437A1.5 1.5 0 0 1 4.98 3h6.04a1.5 1.5 0 0 1 1.17.563l3.7 4.625a.5.5 0 0 1 .106.374l-.39 3.124A1.5 1.5 0 0 1 14.117 13H1.883a1.5 1.5 0 0 1-1.489-1.314l-.39-3.124a.5.5 0 0 1 .106-.374z\" />\n      </svg>\n    );\n  },\n);\n\nInboxFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InboxFill;\n"
  },
  {
    "path": "src/icons/inbox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Inbox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-inbox', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.98 4a.5.5 0 0 0-.39.188L1.54 8H6a.5.5 0 0 1 .5.5 1.5 1.5 0 1 0 3 0A.5.5 0 0 1 10 8h4.46l-3.05-3.812A.5.5 0 0 0 11.02 4zm9.954 5H10.45a2.5 2.5 0 0 1-4.9 0H1.066l.32 2.562a.5.5 0 0 0 .497.438h12.234a.5.5 0 0 0 .496-.438zM3.809 3.563A1.5 1.5 0 0 1 4.981 3h6.038a1.5 1.5 0 0 1 1.172.563l3.7 4.625a.5.5 0 0 1 .105.374l-.39 3.124A1.5 1.5 0 0 1 14.117 13H1.883a1.5 1.5 0 0 1-1.489-1.314l-.39-3.124a.5.5 0 0 1 .106-.374z\" />\n      </svg>\n    );\n  },\n);\n\nInbox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Inbox;\n"
  },
  {
    "path": "src/icons/inboxes-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InboxesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-inboxes-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.98 1a.5.5 0 0 0-.39.188L1.54 5H6a.5.5 0 0 1 .5.5 1.5 1.5 0 0 0 3 0A.5.5 0 0 1 10 5h4.46l-3.05-3.812A.5.5 0 0 0 11.02 1zM3.81.563A1.5 1.5 0 0 1 4.98 0h6.04a1.5 1.5 0 0 1 1.17.563l3.7 4.625a.5.5 0 0 1 .106.374l-.39 3.124A1.5 1.5 0 0 1 14.117 10H1.883A1.5 1.5 0 0 1 .394 8.686l-.39-3.124a.5.5 0 0 1 .106-.374zM.125 11.17A.5.5 0 0 1 .5 11H6a.5.5 0 0 1 .5.5 1.5 1.5 0 0 0 3 0 .5.5 0 0 1 .5-.5h5.5a.5.5 0 0 1 .496.562l-.39 3.124A1.5 1.5 0 0 1 14.117 16H1.883a1.5 1.5 0 0 1-1.489-1.314l-.39-3.124a.5.5 0 0 1 .121-.393z\" />\n      </svg>\n    );\n  },\n);\n\nInboxesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InboxesFill;\n"
  },
  {
    "path": "src/icons/inboxes.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Inboxes = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-inboxes', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.98 1a.5.5 0 0 0-.39.188L1.54 5H6a.5.5 0 0 1 .5.5 1.5 1.5 0 0 0 3 0A.5.5 0 0 1 10 5h4.46l-3.05-3.812A.5.5 0 0 0 11.02 1zm9.954 5H10.45a2.5 2.5 0 0 1-4.9 0H1.066l.32 2.562A.5.5 0 0 0 1.884 9h12.234a.5.5 0 0 0 .496-.438zM3.809.563A1.5 1.5 0 0 1 4.981 0h6.038a1.5 1.5 0 0 1 1.172.563l3.7 4.625a.5.5 0 0 1 .105.374l-.39 3.124A1.5 1.5 0 0 1 14.117 10H1.883A1.5 1.5 0 0 1 .394 8.686l-.39-3.124a.5.5 0 0 1 .106-.374zM.125 11.17A.5.5 0 0 1 .5 11H6a.5.5 0 0 1 .5.5 1.5 1.5 0 0 0 3 0 .5.5 0 0 1 .5-.5h5.5a.5.5 0 0 1 .496.562l-.39 3.124A1.5 1.5 0 0 1 14.117 16H1.883a1.5 1.5 0 0 1-1.489-1.314l-.39-3.124a.5.5 0 0 1 .121-.393zm.941.83.32 2.562a.5.5 0 0 0 .497.438h12.234a.5.5 0 0 0 .496-.438l.32-2.562H10.45a2.5 2.5 0 0 1-4.9 0z\" />\n      </svg>\n    );\n  },\n);\n\nInboxes.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Inboxes;\n"
  },
  {
    "path": "src/icons/incognito.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Incognito = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-incognito', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"m4.736 1.968-.892 3.269-.014.058C2.113 5.568 1 6.006 1 6.5 1 7.328 4.134 8 8 8s7-.672 7-1.5c0-.494-1.113-.932-2.83-1.205l-.014-.058-.892-3.27c-.146-.533-.698-.849-1.239-.734C9.411 1.363 8.62 1.5 8 1.5s-1.411-.136-2.025-.267c-.541-.115-1.093.2-1.239.735m.015 3.867a.25.25 0 0 1 .274-.224c.9.092 1.91.143 2.975.143a30 30 0 0 0 2.975-.143.25.25 0 0 1 .05.498c-.918.093-1.944.145-3.025.145s-2.107-.052-3.025-.145a.25.25 0 0 1-.224-.274M3.5 10h2a.5.5 0 0 1 .5.5v1a1.5 1.5 0 0 1-3 0v-1a.5.5 0 0 1 .5-.5m-1.5.5q.001-.264.085-.5H2a.5.5 0 0 1 0-1h3.5a1.5 1.5 0 0 1 1.488 1.312 3.5 3.5 0 0 1 2.024 0A1.5 1.5 0 0 1 10.5 9H14a.5.5 0 0 1 0 1h-.085q.084.236.085.5v1a2.5 2.5 0 0 1-5 0v-.14l-.21-.07a2.5 2.5 0 0 0-1.58 0l-.21.07v.14a2.5 2.5 0 0 1-5 0zm8.5-.5h2a.5.5 0 0 1 .5.5v1a1.5 1.5 0 0 1-3 0v-1a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nIncognito.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Incognito;\n"
  },
  {
    "path": "src/icons/indent.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Indent = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-indent', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3 8a.5.5 0 0 1 .5-.5h6.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H3.5A.5.5 0 0 1 3 8\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nIndent.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Indent;\n"
  },
  {
    "path": "src/icons/infinity.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Infinity = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-infinity', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.68 5.792 7.345 7.75 5.681 9.708a2.75 2.75 0 1 1 0-3.916ZM8 6.978 6.416 5.113l-.014-.015a3.75 3.75 0 1 0 0 5.304l.014-.015L8 8.522l1.584 1.865.014.015a3.75 3.75 0 1 0 0-5.304l-.014.015zm.656.772 1.663-1.958a2.75 2.75 0 1 1 0 3.916z\" />\n      </svg>\n    );\n  },\n);\n\nInfinity.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Infinity;\n"
  },
  {
    "path": "src/icons/info-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InfoCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nInfoCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InfoCircleFill;\n"
  },
  {
    "path": "src/icons/info-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InfoCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nInfoCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InfoCircle;\n"
  },
  {
    "path": "src/icons/info-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InfoLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m9.708 6.075-3.024.379-.108.502.595.108c.387.093.464.232.38.619l-.975 4.577c-.255 1.183.14 1.74 1.067 1.74.72 0 1.554-.332 1.933-.789l.116-.549c-.263.232-.65.325-.905.325-.363 0-.494-.255-.402-.704zm.091-2.755a1.32 1.32 0 1 1-2.64 0 1.32 1.32 0 0 1 2.64 0\" />\n      </svg>\n    );\n  },\n);\n\nInfoLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InfoLg;\n"
  },
  {
    "path": "src/icons/info-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InfoSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm8.93 4.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533zM8 5.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nInfoSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InfoSquareFill;\n"
  },
  {
    "path": "src/icons/info-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InfoSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nInfoSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InfoSquare;\n"
  },
  {
    "path": "src/icons/info.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Info = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-info', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nInfo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Info;\n"
  },
  {
    "path": "src/icons/input-cursor-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InputCursorText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-input-cursor-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 2a.5.5 0 0 1 .5-.5c.862 0 1.573.287 2.06.566.174.099.321.198.44.286.119-.088.266-.187.44-.286A4.17 4.17 0 0 1 10.5 1.5a.5.5 0 0 1 0 1c-.638 0-1.177.213-1.564.434a3.5 3.5 0 0 0-.436.294V7.5H9a.5.5 0 0 1 0 1h-.5v4.272c.1.08.248.187.436.294.387.221.926.434 1.564.434a.5.5 0 0 1 0 1 4.17 4.17 0 0 1-2.06-.566A5 5 0 0 1 8 13.65a5 5 0 0 1-.44.285 4.17 4.17 0 0 1-2.06.566.5.5 0 0 1 0-1c.638 0 1.177-.213 1.564-.434.188-.107.335-.214.436-.294V8.5H7a.5.5 0 0 1 0-1h.5V3.228a3.5 3.5 0 0 0-.436-.294A3.17 3.17 0 0 0 5.5 2.5.5.5 0 0 1 5 2\"\n        />\n        <path d=\"M10 5h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4v1h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4zM6 5V4H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v-1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nInputCursorText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InputCursorText;\n"
  },
  {
    "path": "src/icons/input-cursor.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst InputCursor = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-input-cursor', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 5h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4v1h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4zM6 5V4H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v-1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13A.5.5 0 0 1 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nInputCursor.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default InputCursor;\n"
  },
  {
    "path": "src/icons/instagram.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Instagram = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-instagram', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334\" />\n      </svg>\n    );\n  },\n);\n\nInstagram.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Instagram;\n"
  },
  {
    "path": "src/icons/intersect.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Intersect = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-intersect', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2zm5 10v2a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2v5a2 2 0 0 1-2 2zm6-8V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h2V6a2 2 0 0 1 2-2z\" />\n      </svg>\n    );\n  },\n);\n\nIntersect.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Intersect;\n"
  },
  {
    "path": "src/icons/javascript.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Javascript = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-javascript', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zM9.053 7.596v3.127l-.007 1.752q0 .498-.186.752t-.556.263q-.342 0-.528-.234-.185-.234-.185-.684v-.175H6.37v.185q0 .665.253 1.113.255.45.703.674.44.225 1.016.225.88 0 1.406-.498.527-.498.527-1.485l.007-1.752V7.596zm3.808-.108q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518\"\n        />\n      </svg>\n    );\n  },\n);\n\nJavascript.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Javascript;\n"
  },
  {
    "path": "src/icons/journal-album.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalAlbum = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-album', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 4a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5zm1 7a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalAlbum.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalAlbum;\n"
  },
  {
    "path": "src/icons/journal-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 5a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 9.293V5.5A.5.5 0 0 1 8 5\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalArrowDown;\n"
  },
  {
    "path": "src/icons/journal-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 11a.5.5 0 0 0 .5-.5V6.707l1.146 1.147a.5.5 0 0 0 .708-.708l-2-2a.5.5 0 0 0-.708 0l-2 2a.5.5 0 1 0 .708.708L7.5 6.707V10.5a.5.5 0 0 0 .5.5\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalArrowUp;\n"
  },
  {
    "path": "src/icons/journal-bookmark-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalBookmarkFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-bookmark-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 1h6v7a.5.5 0 0 1-.757.429L9 7.083 6.757 8.43A.5.5 0 0 1 6 8z\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalBookmarkFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalBookmarkFill;\n"
  },
  {
    "path": "src/icons/journal-bookmark.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalBookmark = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-bookmark', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 8V1h1v6.117L8.743 6.07a.5.5 0 0 1 .514 0L11 7.117V1h1v7a.5.5 0 0 1-.757.429L9 7.083 6.757 8.43A.5.5 0 0 1 6 8\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalBookmark.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalBookmark;\n"
  },
  {
    "path": "src/icons/journal-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.854 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalCheck;\n"
  },
  {
    "path": "src/icons/journal-code.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalCode = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-code', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.646 5.646a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 8 8.646 6.354a.5.5 0 0 1 0-.708m-1.292 0a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0 0 .708l2 2a.5.5 0 0 0 .708-.708L5.707 8l1.647-1.646a.5.5 0 0 0 0-.708\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalCode.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalCode;\n"
  },
  {
    "path": "src/icons/journal-medical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalMedical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-medical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 4a.5.5 0 0 1 .5.5v.634l.549-.317a.5.5 0 1 1 .5.866L9 6l.549.317a.5.5 0 1 1-.5.866L8.5 6.866V7.5a.5.5 0 0 1-1 0v-.634l-.549.317a.5.5 0 1 1-.5-.866L7 6l-.549-.317a.5.5 0 0 1 .5-.866l.549.317V4.5A.5.5 0 0 1 8 4M5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalMedical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalMedical;\n"
  },
  {
    "path": "src/icons/journal-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalMinus;\n"
  },
  {
    "path": "src/icons/journal-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 5.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalPlus;\n"
  },
  {
    "path": "src/icons/journal-richtext.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalRichtext = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-richtext', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m-.861 1.542 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047L11 4.75V7a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 7v-.5s1.54-1.274 1.639-1.208M5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalRichtext.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalRichtext;\n"
  },
  {
    "path": "src/icons/journal-text.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalText = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-text', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalText.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalText;\n"
  },
  {
    "path": "src/icons/journal-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JournalX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.146 6.146a.5.5 0 0 1 .708 0L8 7.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 8l1.147 1.146a.5.5 0 0 1-.708.708L8 8.707 6.854 9.854a.5.5 0 0 1-.708-.708L7.293 8 6.146 6.854a.5.5 0 0 1 0-.708\"\n        />\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournalX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JournalX;\n"
  },
  {
    "path": "src/icons/journal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Journal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journal', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2\" />\n        <path d=\"M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nJournal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Journal;\n"
  },
  {
    "path": "src/icons/journals.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Journals = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-journals', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 0h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2 2 2 0 0 1-2 2H3a2 2 0 0 1-2-2h1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1H1a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v9a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1H3a2 2 0 0 1 2-2\" />\n        <path d=\"M1 6v-.5a.5.5 0 0 1 1 0V6h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V9h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 2.5v.5H.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H2v-.5a.5.5 0 0 0-1 0\" />\n      </svg>\n    );\n  },\n);\n\nJournals.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Journals;\n"
  },
  {
    "path": "src/icons/joystick.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Joystick = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-joystick', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 2a2 2 0 0 1-1.5 1.937v5.087c.863.083 1.5.377 1.5.726 0 .414-.895.75-2 .75s-2-.336-2-.75c0-.35.637-.643 1.5-.726V3.937A2 2 0 1 1 10 2\" />\n        <path d=\"M0 9.665v1.717a1 1 0 0 0 .553.894l6.553 3.277a2 2 0 0 0 1.788 0l6.553-3.277a1 1 0 0 0 .553-.894V9.665c0-.1-.06-.19-.152-.23L9.5 6.715v.993l5.227 2.178a.125.125 0 0 1 .001.23l-5.94 2.546a2 2 0 0 1-1.576 0l-5.94-2.546a.125.125 0 0 1 .001-.23L6.5 7.708l-.013-.988L.152 9.435a.25.25 0 0 0-.152.23\" />\n      </svg>\n    );\n  },\n);\n\nJoystick.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Joystick;\n"
  },
  {
    "path": "src/icons/justify-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JustifyLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-justify-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nJustifyLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JustifyLeft;\n"
  },
  {
    "path": "src/icons/justify-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst JustifyRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-justify-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nJustifyRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default JustifyRight;\n"
  },
  {
    "path": "src/icons/justify.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Justify = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-justify', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 12.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nJustify.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Justify;\n"
  },
  {
    "path": "src/icons/kanban-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst KanbanFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-kanban-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm5 2h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m-5 1a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1zm9-1h1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nKanbanFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default KanbanFill;\n"
  },
  {
    "path": "src/icons/kanban.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Kanban = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-kanban', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.5 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zm-11-1a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M6.5 3a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1zm-4 0a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1zm8 0a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nKanban.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Kanban;\n"
  },
  {
    "path": "src/icons/key-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst KeyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-key-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 11.5a3.5 3.5 0 1 1 3.163-5H14L15.5 8 14 9.5l-1-1-1 1-1-1-1 1-1-1-1 1H6.663a3.5 3.5 0 0 1-3.163 2M2.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nKeyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default KeyFill;\n"
  },
  {
    "path": "src/icons/key.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Key = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-key', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8m4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1h-6.63a.5.5 0 0 1-.451-.285A3 3 0 0 0 4 5\" />\n        <path d=\"M4 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nKey.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Key;\n"
  },
  {
    "path": "src/icons/keyboard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst KeyboardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-keyboard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25M2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25M6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25M13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25M11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25M7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25M2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25M4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25z\" />\n      </svg>\n    );\n  },\n);\n\nKeyboardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default KeyboardFill;\n"
  },
  {
    "path": "src/icons/keyboard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Keyboard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-keyboard', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zM2 4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z\" />\n        <path d=\"M13 10.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm0-2a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm-5 0A.25.25 0 0 1 8.25 8h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 8 8.75zm2 0a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25zm1 2a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm-5-2A.25.25 0 0 1 6.25 8h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 6 8.75zm-2 0A.25.25 0 0 1 4.25 8h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 4 8.75zm-2 0A.25.25 0 0 1 2.25 8h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 2 8.75zm11-2a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm-2 0a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm-2 0A.25.25 0 0 1 9.25 6h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 9 6.75zm-2 0A.25.25 0 0 1 7.25 6h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 7 6.75zm-2 0A.25.25 0 0 1 5.25 6h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5A.25.25 0 0 1 5 6.75zm-3 0A.25.25 0 0 1 2.25 6h1.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-1.5A.25.25 0 0 1 2 6.75zm0 4a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25zm2 0a.25.25 0 0 1 .25-.25h5.5a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25h-5.5a.25.25 0 0 1-.25-.25z\" />\n      </svg>\n    );\n  },\n);\n\nKeyboard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Keyboard;\n"
  },
  {
    "path": "src/icons/ladder.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ladder = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ladder', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 1a.5.5 0 0 1 .5.5V2h6v-.5a.5.5 0 0 1 1 0v14a.5.5 0 0 1-1 0V15H5v.5a.5.5 0 0 1-1 0v-14a.5.5 0 0 1 .5-.5M5 14h6v-2H5zm0-3h6V9H5zm0-3h6V6H5zm0-3h6V3H5z\" />\n      </svg>\n    );\n  },\n);\n\nLadder.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ladder;\n"
  },
  {
    "path": "src/icons/lamp-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LampFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lamp-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.04.303A.5.5 0 0 1 5.5 0h5c.2 0 .38.12.46.303l3 7a.5.5 0 0 1-.363.687h-.002q-.225.044-.45.081a33 33 0 0 1-4.645.425V13.5a.5.5 0 1 1-1 0V8.495a33 33 0 0 1-4.645-.425q-.225-.036-.45-.08h-.003a.5.5 0 0 1-.362-.688l3-7Z\"\n        />\n        <path d=\"M6.493 12.574a.5.5 0 0 1-.411.575c-.712.118-1.28.295-1.655.493a1.3 1.3 0 0 0-.37.265.3.3 0 0 0-.052.075l-.001.004-.004.01V14l.002.008.016.033a.6.6 0 0 0 .145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.6.6 0 0 0 .146-.15l.015-.033L12 14v-.004a.3.3 0 0 0-.057-.09 1.3 1.3 0 0 0-.37-.264c-.376-.198-.943-.375-1.655-.493a.5.5 0 1 1 .164-.986c.77.127 1.452.328 1.957.594C12.5 13 13 13.4 13 14c0 .426-.26.752-.544.977-.29.228-.68.413-1.116.558-.878.293-2.059.465-3.34.465s-2.462-.172-3.34-.465c-.436-.145-.826-.33-1.116-.558C3.26 14.752 3 14.426 3 14c0-.599.5-1 .961-1.243.505-.266 1.187-.467 1.957-.594a.5.5 0 0 1 .575.411\" />\n      </svg>\n    );\n  },\n);\n\nLampFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LampFill;\n"
  },
  {
    "path": "src/icons/lamp.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Lamp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lamp', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.04.303A.5.5 0 0 1 5.5 0h5c.2 0 .38.12.46.303l3 7a.5.5 0 0 1-.363.687h-.002q-.225.044-.45.081a33 33 0 0 1-4.645.425V13.5a.5.5 0 1 1-1 0V8.495a33 33 0 0 1-4.645-.425q-.225-.036-.45-.08h-.003a.5.5 0 0 1-.362-.688l3-7ZM3.21 7.116A31 31 0 0 0 8 7.5a31 31 0 0 0 4.791-.384L10.171 1H5.83z\"\n        />\n        <path d=\"M6.493 12.574a.5.5 0 0 1-.411.575c-.712.118-1.28.295-1.655.493a1.3 1.3 0 0 0-.37.265.3.3 0 0 0-.052.075l-.001.004-.004.01V14l.002.008.016.033a.6.6 0 0 0 .145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.6.6 0 0 0 .146-.15l.015-.033L12 14v-.004a.3.3 0 0 0-.057-.09 1.3 1.3 0 0 0-.37-.264c-.376-.198-.943-.375-1.655-.493a.5.5 0 1 1 .164-.986c.77.127 1.452.328 1.957.594C12.5 13 13 13.4 13 14c0 .426-.26.752-.544.977-.29.228-.68.413-1.116.558-.878.293-2.059.465-3.34.465s-2.462-.172-3.34-.465c-.436-.145-.826-.33-1.116-.558C3.26 14.752 3 14.426 3 14c0-.599.5-1 .961-1.243.505-.266 1.187-.467 1.957-.594a.5.5 0 0 1 .575.411\" />\n      </svg>\n    );\n  },\n);\n\nLamp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Lamp;\n"
  },
  {
    "path": "src/icons/laptop-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LaptopFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-laptop-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 2A1.5 1.5 0 0 0 1 3.5V12h14V3.5A1.5 1.5 0 0 0 13.5 2zM0 12.5h16a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5\" />\n      </svg>\n    );\n  },\n);\n\nLaptopFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LaptopFill;\n"
  },
  {
    "path": "src/icons/laptop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Laptop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-laptop', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.5 3a.5.5 0 0 1 .5.5V11H2V3.5a.5.5 0 0 1 .5-.5zm-11-1A1.5 1.5 0 0 0 1 3.5V12h14V3.5A1.5 1.5 0 0 0 13.5 2zM0 12.5h16a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5\" />\n      </svg>\n    );\n  },\n);\n\nLaptop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Laptop;\n"
  },
  {
    "path": "src/icons/layer-backward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayerBackward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layer-backward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.354 15.854a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708l1-1a.5.5 0 0 1 .708 0l.646.647V4H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H9v7.793l.646-.647a.5.5 0 0 1 .708 0l1 1a.5.5 0 0 1 0 .708z\" />\n        <path d=\"M1 9a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4.5a.5.5 0 0 1 0 1H1v2h4.5a.5.5 0 0 1 0 1zm9.5 0a.5.5 0 0 1 0-1H15V6h-4.5a.5.5 0 0 1 0-1H15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nLayerBackward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayerBackward;\n"
  },
  {
    "path": "src/icons/layer-forward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayerForward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layer-forward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.354.146a.5.5 0 0 0-.708 0l-3 3a.5.5 0 0 0 0 .708l1 1a.5.5 0 0 0 .708 0L7 4.207V12H1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H9V4.207l.646.647a.5.5 0 0 0 .708 0l1-1a.5.5 0 0 0 0-.708z\" />\n        <path d=\"M1 7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4.5a.5.5 0 0 0 0-1H1V8h4.5a.5.5 0 0 0 0-1zm9.5 0a.5.5 0 0 0 0 1H15v2h-4.5a.5.5 0 0 0 0 1H15a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nLayerForward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayerForward;\n"
  },
  {
    "path": "src/icons/layers-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayersFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layers-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.765 1.559a.5.5 0 0 1 .47 0l7.5 4a.5.5 0 0 1 0 .882l-7.5 4a.5.5 0 0 1-.47 0l-7.5-4a.5.5 0 0 1 0-.882z\" />\n        <path d=\"m2.125 8.567-1.86.992a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882l-1.86-.992-5.17 2.756a1.5 1.5 0 0 1-1.41 0z\" />\n      </svg>\n    );\n  },\n);\n\nLayersFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayersFill;\n"
  },
  {
    "path": "src/icons/layers-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayersHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layers-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.235 1.559a.5.5 0 0 0-.47 0l-7.5 4a.5.5 0 0 0 0 .882L3.188 8 .264 9.559a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882L12.813 8l2.922-1.559a.5.5 0 0 0 0-.882zM8 9.433 1.562 6 8 2.567 14.438 6z\" />\n      </svg>\n    );\n  },\n);\n\nLayersHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayersHalf;\n"
  },
  {
    "path": "src/icons/layers.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Layers = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layers', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.235 1.559a.5.5 0 0 0-.47 0l-7.5 4a.5.5 0 0 0 0 .882L3.188 8 .264 9.559a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882L12.813 8l2.922-1.559a.5.5 0 0 0 0-.882zm3.515 7.008L14.438 10 8 13.433 1.562 10 4.25 8.567l3.515 1.874a.5.5 0 0 0 .47 0zM8 9.433 1.562 6 8 2.567 14.438 6z\" />\n      </svg>\n    );\n  },\n);\n\nLayers.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Layers;\n"
  },
  {
    "path": "src/icons/layout-sidebar-inset-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutSidebarInsetReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-sidebar-inset-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z\" />\n        <path d=\"M13 4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutSidebarInsetReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutSidebarInsetReverse;\n"
  },
  {
    "path": "src/icons/layout-sidebar-inset.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutSidebarInset = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-sidebar-inset', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zM2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2z\" />\n        <path d=\"M3 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutSidebarInset.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutSidebarInset;\n"
  },
  {
    "path": "src/icons/layout-sidebar-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutSidebarReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-sidebar-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 3a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zm-5-1v12H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm1 0h2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-2z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutSidebarReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutSidebarReverse;\n"
  },
  {
    "path": "src/icons/layout-sidebar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutSidebar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-sidebar', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5-1v12h9a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zM4 2H2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h2z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutSidebar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutSidebar;\n"
  },
  {
    "path": "src/icons/layout-split.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutSplit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-split', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm8.5-1v12H14a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zm-1 0H2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h5.5z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutSplit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutSplit;\n"
  },
  {
    "path": "src/icons/layout-text-sidebar-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutTextSidebarReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-text-sidebar-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 3a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1zm0 3a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1zm.5 3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5m-.5 2.5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1z\" />\n        <path d=\"M16 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zM4 1v14H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zm1 0h9a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H5z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutTextSidebarReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutTextSidebarReverse;\n"
  },
  {
    "path": "src/icons/layout-text-sidebar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutTextSidebar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-text-sidebar', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zM3 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm12-1v14h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 0H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h9z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutTextSidebar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutTextSidebar;\n"
  },
  {
    "path": "src/icons/layout-text-window-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutTextWindowReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-text-window-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 6.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5m0 3a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5m-.5 2.5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1z\" />\n        <path d=\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zM2 1a1 1 0 0 0-1 1v1h14V2a1 1 0 0 0-1-1zM1 4v10a1 1 0 0 0 1 1h2V4zm4 0v11h9a1 1 0 0 0 1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutTextWindowReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutTextWindowReverse;\n"
  },
  {
    "path": "src/icons/layout-text-window.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutTextWindow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-text-window', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 6.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 3a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v1H1V2a1 1 0 0 1 1-1zm1 3v10a1 1 0 0 1-1 1h-2V4zm-4 0v11H2a1 1 0 0 1-1-1V4z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutTextWindow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutTextWindow;\n"
  },
  {
    "path": "src/icons/layout-three-columns.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutThreeColumns = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-three-columns', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5H5V1zM10 15V1H6v14zm1 0h3.5a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5H11z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutThreeColumns.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutThreeColumns;\n"
  },
  {
    "path": "src/icons/layout-wtf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LayoutWtf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-layout-wtf', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 1v8H1V1zM1 0a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm13 2v5H9V2zM9 1a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM5 13v2H3v-2zm-2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm12-1v2H9v-2zm-6-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nLayoutWtf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LayoutWtf;\n"
  },
  {
    "path": "src/icons/leaf-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LeafFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-leaf-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.4 1.7c.217.289.65.84 1.725 1.274 1.093.44 2.885.774 5.834.528 2.02-.168 3.431.51 4.326 1.556C14.161 6.082 14.5 7.41 14.5 8.5q0 .344-.027.734C13.387 8.252 11.877 7.76 10.39 7.5c-2.016-.288-4.188-.445-5.59-2.045-.142-.162-.402-.102-.379.112.108.985 1.104 1.82 1.844 2.308 2.37 1.566 5.772-.118 7.6 3.071.505.8 1.374 2.7 1.75 4.292.07.298-.066.611-.354.715a.7.7 0 0 1-.161.042 1 1 0 0 1-1.08-.794c-.13-.97-.396-1.913-.868-2.77C12.173 13.386 10.565 14 8 14c-1.854 0-3.32-.544-4.45-1.435-1.124-.887-1.889-2.095-2.39-3.383-1-2.562-1-5.536-.65-7.28L.73.806z\" />\n      </svg>\n    );\n  },\n);\n\nLeafFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LeafFill;\n"
  },
  {
    "path": "src/icons/leaf.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Leaf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-leaf', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.4 1.7c.216.289.65.84 1.725 1.274 1.093.44 2.884.774 5.834.528l.37-.023c1.823-.06 3.117.598 3.956 1.579C14.16 6.082 14.5 7.41 14.5 8.5c0 .58-.032 1.285-.229 1.997q.198.248.382.54c.756 1.2 1.19 2.563 1.348 3.966a1 1 0 0 1-1.98.198c-.13-.97-.397-1.913-.868-2.77C12.173 13.386 10.565 14 8 14c-1.854 0-3.32-.544-4.45-1.435-1.125-.887-1.89-2.095-2.391-3.383C.16 6.62.16 3.646.509 1.902L.73.806zm-.05 1.39c-.146 1.609-.008 3.809.74 5.728.457 1.17 1.13 2.213 2.079 2.961.942.744 2.185 1.22 3.83 1.221 2.588 0 3.91-.66 4.609-1.445-1.789-2.46-4.121-1.213-6.342-2.68-.74-.488-1.735-1.323-1.844-2.308-.023-.214.237-.274.38-.112 1.4 1.6 3.573 1.757 5.59 2.045 1.227.215 2.21.526 3.033 1.158.058-.39.075-.782.075-1.158 0-.91-.288-1.988-.975-2.792-.626-.732-1.622-1.281-3.167-1.229l-.316.02c-3.05.253-5.01-.08-6.291-.598a5.3 5.3 0 0 1-1.4-.811\" />\n      </svg>\n    );\n  },\n);\n\nLeaf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Leaf;\n"
  },
  {
    "path": "src/icons/life-preserver.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LifePreserver = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-life-preserver', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m6.43-5.228a7.03 7.03 0 0 1-3.658 3.658l-1.115-2.788a4 4 0 0 0 1.985-1.985zM5.228 14.43a7.03 7.03 0 0 1-3.658-3.658l2.788-1.115a4 4 0 0 0 1.985 1.985zm9.202-9.202-2.788 1.115a4 4 0 0 0-1.985-1.985l1.115-2.788a7.03 7.03 0 0 1 3.658 3.658m-8.087-.87a4 4 0 0 0-1.985 1.985L1.57 5.228A7.03 7.03 0 0 1 5.228 1.57zM8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6\" />\n      </svg>\n    );\n  },\n);\n\nLifePreserver.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LifePreserver;\n"
  },
  {
    "path": "src/icons/lightbulb-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightbulbFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightbulb-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m3 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nLightbulbFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightbulbFill;\n"
  },
  {
    "path": "src/icons/lightbulb-off-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightbulbOffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightbulb-off-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6c0-.572.08-1.125.23-1.65l8.558 8.559A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m10.303 4.181L3.818 1.697a6 6 0 0 1 8.484 8.484zM5 14.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1-.5-.5M2.354 1.646a.5.5 0 1 0-.708.708l12 12a.5.5 0 0 0 .708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nLightbulbOffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightbulbOffFill;\n"
  },
  {
    "path": "src/icons/lightbulb-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightbulbOff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightbulb-off', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.23 4.35A6 6 0 0 0 2 6c0 1.691.7 3.22 1.826 4.31.203.196.359.4.453.619l.762 1.769A.5.5 0 0 0 5.5 13a.5.5 0 0 0 0 1 .5.5 0 0 0 0 1l.224.447a1 1 0 0 0 .894.553h2.764a1 1 0 0 0 .894-.553L10.5 15a.5.5 0 0 0 0-1 .5.5 0 0 0 0-1 .5.5 0 0 0 .288-.091L9.878 12H5.83l-.632-1.467a3 3 0 0 0-.676-.941 4.98 4.98 0 0 1-1.455-4.405zm1.588-2.653.708.707a5 5 0 0 1 7.07 7.07l.707.707a6 6 0 0 0-8.484-8.484zm-2.172-.051a.5.5 0 0 1 .708 0l12 12a.5.5 0 0 1-.708.708l-12-12a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nLightbulbOff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightbulbOff;\n"
  },
  {
    "path": "src/icons/lightbulb.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Lightbulb = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightbulb', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1\" />\n      </svg>\n    );\n  },\n);\n\nLightbulb.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Lightbulb;\n"
  },
  {
    "path": "src/icons/lightning-charge-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightningChargeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightning-charge-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z\" />\n      </svg>\n    );\n  },\n);\n\nLightningChargeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightningChargeFill;\n"
  },
  {
    "path": "src/icons/lightning-charge.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightningCharge = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightning-charge', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09zM4.157 8.5H7a.5.5 0 0 1 .478.647L6.11 13.59l5.732-6.09H9a.5.5 0 0 1-.478-.647L9.89 2.41z\" />\n      </svg>\n    );\n  },\n);\n\nLightningCharge.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightningCharge;\n"
  },
  {
    "path": "src/icons/lightning-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LightningFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightning-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.52.359A.5.5 0 0 1 6 0h4a.5.5 0 0 1 .474.658L8.694 6H12.5a.5.5 0 0 1 .395.807l-7 9a.5.5 0 0 1-.873-.454L6.823 9.5H3.5a.5.5 0 0 1-.48-.641z\" />\n      </svg>\n    );\n  },\n);\n\nLightningFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LightningFill;\n"
  },
  {
    "path": "src/icons/lightning.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Lightning = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lightning', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.52.359A.5.5 0 0 1 6 0h4a.5.5 0 0 1 .474.658L8.694 6H12.5a.5.5 0 0 1 .395.807l-7 9a.5.5 0 0 1-.873-.454L6.823 9.5H3.5a.5.5 0 0 1-.48-.641zM6.374 1 4.168 8.5H7.5a.5.5 0 0 1 .478.647L6.78 13.04 11.478 7H8a.5.5 0 0 1-.474-.658L9.306 1z\" />\n      </svg>\n    );\n  },\n);\n\nLightning.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Lightning;\n"
  },
  {
    "path": "src/icons/line.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Line = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-line', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0c4.411 0 8 2.912 8 6.492 0 1.433-.555 2.723-1.715 3.994-1.678 1.932-5.431 4.285-6.285 4.645-.83.35-.734-.197-.696-.413l.003-.018.114-.685c.027-.204.055-.521-.026-.723-.09-.223-.444-.339-.704-.395C2.846 12.39 0 9.701 0 6.492 0 2.912 3.59 0 8 0M5.022 7.686H3.497V4.918a.156.156 0 0 0-.155-.156H2.78a.156.156 0 0 0-.156.156v3.486c0 .041.017.08.044.107v.001l.002.002.002.002a.15.15 0 0 0 .108.043h2.242c.086 0 .155-.07.155-.156v-.56a.156.156 0 0 0-.155-.157m.791-2.924a.156.156 0 0 0-.156.156v3.486c0 .086.07.155.156.155h.562c.086 0 .155-.07.155-.155V4.918a.156.156 0 0 0-.155-.156zm3.863 0a.156.156 0 0 0-.156.156v2.07L7.923 4.832l-.013-.015v-.001l-.01-.01-.003-.003-.011-.009h-.001L7.88 4.79l-.003-.002-.005-.003-.008-.005h-.002l-.003-.002-.01-.004-.004-.002-.01-.003h-.002l-.003-.001-.009-.002h-.006l-.003-.001h-.004l-.002-.001h-.574a.156.156 0 0 0-.156.155v3.486c0 .086.07.155.156.155h.56c.087 0 .157-.07.157-.155v-2.07l1.6 2.16a.2.2 0 0 0 .039.038l.001.001.01.006.004.002.008.004.007.003.005.002.01.003h.003a.2.2 0 0 0 .04.006h.56c.087 0 .157-.07.157-.155V4.918a.156.156 0 0 0-.156-.156zm3.815.717v-.56a.156.156 0 0 0-.155-.157h-2.242a.16.16 0 0 0-.108.044h-.001l-.001.002-.002.003a.16.16 0 0 0-.044.107v3.486c0 .041.017.08.044.107l.002.003.002.002a.16.16 0 0 0 .108.043h2.242c.086 0 .155-.07.155-.156v-.56a.156.156 0 0 0-.155-.157H11.81v-.589h1.525c.086 0 .155-.07.155-.156v-.56a.156.156 0 0 0-.155-.157H11.81v-.589h1.525c.086 0 .155-.07.155-.156Z\" />\n      </svg>\n    );\n  },\n);\n\nLine.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Line;\n"
  },
  {
    "path": "src/icons/link-45deg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Link45deg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-link-45deg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.715 6.542 3.343 7.914a3 3 0 1 0 4.243 4.243l1.828-1.829A3 3 0 0 0 8.586 5.5L8 6.086a1 1 0 0 0-.154.199 2 2 0 0 1 .861 3.337L6.88 11.45a2 2 0 1 1-2.83-2.83l.793-.792a4 4 0 0 1-.128-1.287z\" />\n        <path d=\"M6.586 4.672A3 3 0 0 0 7.414 9.5l.775-.776a2 2 0 0 1-.896-3.346L9.12 3.55a2 2 0 1 1 2.83 2.83l-.793.792c.112.42.155.855.128 1.287l1.372-1.372a3 3 0 1 0-4.243-4.243z\" />\n      </svg>\n    );\n  },\n);\n\nLink45deg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Link45deg;\n"
  },
  {
    "path": "src/icons/link.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Link = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-link', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.354 5.5H4a3 3 0 0 0 0 6h3a3 3 0 0 0 2.83-4H9q-.13 0-.25.031A2 2 0 0 1 7 10.5H4a2 2 0 1 1 0-4h1.535c.218-.376.495-.714.82-1z\" />\n        <path d=\"M9 5.5a3 3 0 0 0-2.83 4h1.098A2 2 0 0 1 9 6.5h3a2 2 0 1 1 0 4h-1.535a4 4 0 0 1-.82 1H12a3 3 0 1 0 0-6z\" />\n      </svg>\n    );\n  },\n);\n\nLink.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Link;\n"
  },
  {
    "path": "src/icons/linkedin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Linkedin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-linkedin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z\" />\n      </svg>\n    );\n  },\n);\n\nLinkedin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Linkedin;\n"
  },
  {
    "path": "src/icons/list-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3.854 2.146a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 3.293l1.146-1.147a.5.5 0 0 1 .708 0m0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 7.293l1.146-1.147a.5.5 0 0 1 .708 0m0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nListCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListCheck;\n"
  },
  {
    "path": "src/icons/list-columns-reverse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListColumnsReverse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-columns-reverse', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 .5A.5.5 0 0 1 .5 0h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 0 .5m4 0a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1h-10A.5.5 0 0 1 4 .5m-4 2A.5.5 0 0 1 .5 2h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-4 2A.5.5 0 0 1 .5 4h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m-4 2A.5.5 0 0 1 .5 6h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1h-8a.5.5 0 0 1-.5-.5m-4 2A.5.5 0 0 1 .5 8h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1h-8a.5.5 0 0 1-.5-.5m-4 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1h-10a.5.5 0 0 1-.5-.5m-4 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m-4 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nListColumnsReverse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListColumnsReverse;\n"
  },
  {
    "path": "src/icons/list-columns.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListColumns = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-columns', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 .5A.5.5 0 0 1 .5 0h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 0 .5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2A.5.5 0 0 1 .5 2h8a.5.5 0 0 1 0 1h-8a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2A.5.5 0 0 1 .5 4h10a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2A.5.5 0 0 1 .5 6h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2A.5.5 0 0 1 .5 8h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-13 2a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nListColumns.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListColumns;\n"
  },
  {
    "path": "src/icons/list-nested.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListNested = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-nested', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5m-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nListNested.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListNested;\n"
  },
  {
    "path": "src/icons/list-ol.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListOl = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-ol', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M1.713 11.865v-.474H2c.217 0 .363-.137.363-.317 0-.185-.158-.31-.361-.31-.223 0-.367.152-.373.31h-.59c.016-.467.373-.787.986-.787.588-.002.954.291.957.703a.595.595 0 0 1-.492.594v.033a.615.615 0 0 1 .569.631c.003.533-.502.8-1.051.8-.656 0-1-.37-1.008-.794h.582c.008.178.186.306.422.309.254 0 .424-.145.422-.35-.002-.195-.155-.348-.414-.348h-.3zm-.004-4.699h-.604v-.035c0-.408.295-.844.958-.844.583 0 .96.326.96.756 0 .389-.257.617-.476.848l-.537.572v.03h1.054V9H1.143v-.395l.957-.99c.138-.142.293-.304.293-.508 0-.18-.147-.32-.342-.32a.33.33 0 0 0-.342.338zM2.564 5h-.635V2.924h-.031l-.598.42v-.567l.629-.443h.635z\" />\n      </svg>\n    );\n  },\n);\n\nListOl.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListOl;\n"
  },
  {
    "path": "src/icons/list-stars.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListStars = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-stars', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M2.242 2.194a.27.27 0 0 1 .516 0l.162.53c.035.115.14.194.258.194h.551c.259 0 .37.333.164.493l-.468.363a.28.28 0 0 0-.094.3l.173.569c.078.256-.213.462-.423.3l-.417-.324a.27.27 0 0 0-.328 0l-.417.323c-.21.163-.5-.043-.423-.299l.173-.57a.28.28 0 0 0-.094-.299l-.468-.363c-.206-.16-.095-.493.164-.493h.55a.27.27 0 0 0 .259-.194zm0 4a.27.27 0 0 1 .516 0l.162.53c.035.115.14.194.258.194h.551c.259 0 .37.333.164.493l-.468.363a.28.28 0 0 0-.094.3l.173.569c.078.255-.213.462-.423.3l-.417-.324a.27.27 0 0 0-.328 0l-.417.323c-.21.163-.5-.043-.423-.299l.173-.57a.28.28 0 0 0-.094-.299l-.468-.363c-.206-.16-.095-.493.164-.493h.55a.27.27 0 0 0 .259-.194zm0 4a.27.27 0 0 1 .516 0l.162.53c.035.115.14.194.258.194h.551c.259 0 .37.333.164.493l-.468.363a.28.28 0 0 0-.094.3l.173.569c.078.255-.213.462-.423.3l-.417-.324a.27.27 0 0 0-.328 0l-.417.323c-.21.163-.5-.043-.423-.299l.173-.57a.28.28 0 0 0-.094-.299l-.468-.363c-.206-.16-.095-.493.164-.493h.55a.27.27 0 0 0 .259-.194z\" />\n      </svg>\n    );\n  },\n);\n\nListStars.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListStars;\n"
  },
  {
    "path": "src/icons/list-task.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListTask = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-task', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5zM3 3H2v1h1z\"\n        />\n        <path d=\"M5 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M5.5 7a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1zm0 4a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.5 7a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5zM2 7h1v1H2zm0 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm1 .5H2v1h1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nListTask.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListTask;\n"
  },
  {
    "path": "src/icons/list-ul.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ListUl = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list-ul', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2\"\n        />\n      </svg>\n    );\n  },\n);\n\nListUl.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ListUl;\n"
  },
  {
    "path": "src/icons/list.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst List = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-list', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nList.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default List;\n"
  },
  {
    "path": "src/icons/lock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lock-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a4 4 0 0 1 4 4v2.05a2.5 2.5 0 0 1 2 2.45v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4m0 1a3 3 0 0 0-3 3v2h6V4a3 3 0 0 0-3-3\"\n        />\n      </svg>\n    );\n  },\n);\n\nLockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LockFill;\n"
  },
  {
    "path": "src/icons/lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Lock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a4 4 0 0 1 4 4v2.05a2.5 2.5 0 0 1 2 2.45v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4M4.5 7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7zM8 1a3 3 0 0 0-3 3v2h6V4a3 3 0 0 0-3-3\"\n        />\n      </svg>\n    );\n  },\n);\n\nLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Lock;\n"
  },
  {
    "path": "src/icons/luggage-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LuggageFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-luggage-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V5h.5A1.5 1.5 0 0 1 8 6.5V7H7v-.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5H4v1H2.5v.25a.75.75 0 0 1-1.5 0v-.335A1.5 1.5 0 0 1 0 13.5v-7A1.5 1.5 0 0 1 1.5 5H2zM3 5h2V2H3z\" />\n        <path d=\"M2.5 7a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 .5-.5m10 1v-.5A1.5 1.5 0 0 0 11 6h-1a1.5 1.5 0 0 0-1.5 1.5V8H8v8h5V8zM10 7h1a.5.5 0 0 1 .5.5V8h-2v-.5A.5.5 0 0 1 10 7M5 9.5A1.5 1.5 0 0 1 6.5 8H7v8h-.5A1.5 1.5 0 0 1 5 14.5zm9 6.5V8h.5A1.5 1.5 0 0 1 16 9.5v5a1.5 1.5 0 0 1-1.5 1.5z\" />\n      </svg>\n    );\n  },\n);\n\nLuggageFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LuggageFill;\n"
  },
  {
    "path": "src/icons/luggage.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Luggage = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-luggage', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 1a.5.5 0 0 0-.5.5V5h-.5A1.5 1.5 0 0 0 0 6.5v7a1.5 1.5 0 0 0 1 1.415v.335a.75.75 0 0 0 1.5 0V15H4v-1H1.5a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5V7h1v-.5A1.5 1.5 0 0 0 6.5 5H6V1.5a.5.5 0 0 0-.5-.5zM5 5H3V2h2z\" />\n        <path d=\"M3 7.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0zM11 6a1.5 1.5 0 0 1 1.5 1.5V8h2A1.5 1.5 0 0 1 16 9.5v5a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 14.5v-5A1.5 1.5 0 0 1 6.5 8h2v-.5A1.5 1.5 0 0 1 10 6zM9.5 7.5V8h2v-.5A.5.5 0 0 0 11 7h-1a.5.5 0 0 0-.5.5M6 9.5v5a.5.5 0 0 0 .5.5H7V9h-.5a.5.5 0 0 0-.5.5m7 5.5V9H8v6zm1.5 0a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5H14v6z\" />\n      </svg>\n    );\n  },\n);\n\nLuggage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Luggage;\n"
  },
  {
    "path": "src/icons/lungs-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst LungsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lungs-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a.5.5 0 0 1 .5.5v5.243L9 7.1V4.72C9 3.77 9.77 3 10.72 3c.524 0 1.023.27 1.443.592.431.332.847.773 1.216 1.229.736.908 1.347 1.946 1.58 2.48.176.405.393 1.16.556 2.011.165.857.283 1.857.24 2.759-.04.867-.232 1.79-.837 2.33-.67.6-1.622.556-2.741-.004l-1.795-.897A2.5 2.5 0 0 1 9 11.264V8.329l-1-.715-1 .715V7.214c-.1 0-.202.03-.29.093l-2.5 1.786a.5.5 0 1 0 .58.814L7 8.329v2.935A2.5 2.5 0 0 1 5.618 13.5l-1.795.897c-1.12.56-2.07.603-2.741.004-.605-.54-.798-1.463-.838-2.33-.042-.902.076-1.902.24-2.759.164-.852.38-1.606.558-2.012.232-.533.843-1.571 1.579-2.479.37-.456.785-.897 1.216-1.229C4.257 3.27 4.756 3 5.28 3 6.23 3 7 3.77 7 4.72V7.1l.5-.357V1.5A.5.5 0 0 1 8 1m3.21 8.907a.5.5 0 1 0 .58-.814l-2.5-1.786A.5.5 0 0 0 9 7.214V8.33z\" />\n      </svg>\n    );\n  },\n);\n\nLungsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default LungsFill;\n"
  },
  {
    "path": "src/icons/lungs.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Lungs = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-lungs', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 1.5a.5.5 0 1 0-1 0v5.243L7 7.1V4.72C7 3.77 6.23 3 5.28 3c-.524 0-1.023.27-1.443.592-.431.332-.847.773-1.216 1.229-.736.908-1.347 1.946-1.58 2.48-.176.405-.393 1.16-.556 2.011-.165.857-.283 1.857-.241 2.759.04.867.233 1.79.838 2.33.67.6 1.622.556 2.741-.004l1.795-.897A2.5 2.5 0 0 0 7 11.264V10.5a.5.5 0 0 0-1 0v.764a1.5 1.5 0 0 1-.83 1.342l-1.794.897c-.978.489-1.415.343-1.628.152-.28-.25-.467-.801-.505-1.63-.037-.795.068-1.71.224-2.525.157-.82.357-1.491.491-1.8.19-.438.75-1.4 1.44-2.25.342-.422.703-.799 1.049-1.065.358-.276.639-.385.833-.385a.72.72 0 0 1 .72.72v3.094l-1.79 1.28a.5.5 0 0 0 .58.813L8 7.614l3.21 2.293a.5.5 0 1 0 .58-.814L10 7.814V4.72a.72.72 0 0 1 .72-.72c.194 0 .475.11.833.385.346.266.706.643 1.05 1.066.688.85 1.248 1.811 1.439 2.249.134.309.334.98.491 1.8.156.814.26 1.73.224 2.525-.038.829-.224 1.38-.505 1.63-.213.19-.65.337-1.628-.152l-1.795-.897A1.5 1.5 0 0 1 10 11.264V10.5a.5.5 0 0 0-1 0v.764a2.5 2.5 0 0 0 1.382 2.236l1.795.897c1.12.56 2.07.603 2.741.004.605-.54.798-1.463.838-2.33.042-.902-.076-1.902-.24-2.759-.164-.852-.38-1.606-.558-2.012-.232-.533-.843-1.571-1.579-2.479-.37-.456-.785-.897-1.216-1.229C11.743 3.27 11.244 3 10.72 3 9.77 3 9 3.77 9 4.72V7.1l-.5-.357z\" />\n      </svg>\n    );\n  },\n);\n\nLungs.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Lungs;\n"
  },
  {
    "path": "src/icons/magic.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Magic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-magic', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 2.672a.5.5 0 1 0 1 0V.843a.5.5 0 0 0-1 0zm4.5.035A.5.5 0 0 0 13.293 2L12 3.293a.5.5 0 1 0 .707.707zM7.293 4A.5.5 0 1 0 8 3.293L6.707 2A.5.5 0 0 0 6 2.707zm-.621 2.5a.5.5 0 1 0 0-1H4.843a.5.5 0 1 0 0 1zm8.485 0a.5.5 0 1 0 0-1h-1.829a.5.5 0 0 0 0 1zM13.293 10A.5.5 0 1 0 14 9.293L12.707 8a.5.5 0 1 0-.707.707zM9.5 11.157a.5.5 0 0 0 1 0V9.328a.5.5 0 0 0-1 0zm1.854-5.097a.5.5 0 0 0 0-.706l-.708-.708a.5.5 0 0 0-.707 0L8.646 5.94a.5.5 0 0 0 0 .707l.708.708a.5.5 0 0 0 .707 0l1.293-1.293Zm-3 3a.5.5 0 0 0 0-.706l-.708-.708a.5.5 0 0 0-.707 0L.646 13.94a.5.5 0 0 0 0 .707l.708.708a.5.5 0 0 0 .707 0z\" />\n      </svg>\n    );\n  },\n);\n\nMagic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Magic;\n"
  },
  {
    "path": "src/icons/magnet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MagnetFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-magnet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 12h-4v3h4zM5 12H1v3h4zM0 8a8 8 0 1 1 16 0v8h-6V8a2 2 0 1 0-4 0v8H0z\" />\n      </svg>\n    );\n  },\n);\n\nMagnetFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MagnetFill;\n"
  },
  {
    "path": "src/icons/magnet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Magnet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-magnet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a7 7 0 0 0-7 7v3h4V8a3 3 0 0 1 6 0v3h4V8a7 7 0 0 0-7-7m7 11h-4v3h4zM5 12H1v3h4zM0 8a8 8 0 1 1 16 0v8h-6V8a2 2 0 1 0-4 0v8H0z\" />\n      </svg>\n    );\n  },\n);\n\nMagnet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Magnet;\n"
  },
  {
    "path": "src/icons/mailbox-flag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MailboxFlag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mailbox-flag', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.5 8.5V3.707l.854-.853A.5.5 0 0 0 11.5 2.5v-2A.5.5 0 0 0 11 0H9.5a.5.5 0 0 0-.5.5v8zM5 7c0 .334-.164.264-.415.157C4.42 7.087 4.218 7 4 7s-.42.086-.585.157C3.164 7.264 3 7.334 3 7a1 1 0 0 1 2 0\" />\n        <path d=\"M4 3h4v1H6.646A4 4 0 0 1 8 7v6h7V7a3 3 0 0 0-3-3V3a4 4 0 0 1 4 4v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V7a4 4 0 0 1 4-4m0 1a3 3 0 0 0-3 3v6h6V7a3 3 0 0 0-3-3\" />\n      </svg>\n    );\n  },\n);\n\nMailboxFlag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MailboxFlag;\n"
  },
  {
    "path": "src/icons/mailbox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mailbox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mailbox', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4a3 3 0 0 0-3 3v6h6V7a3 3 0 0 0-3-3m0-1h8a4 4 0 0 1 4 4v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V7a4 4 0 0 1 4-4m2.646 1A4 4 0 0 1 8 7v6h7V7a3 3 0 0 0-3-3z\" />\n        <path d=\"M11.793 8.5H9v-1h5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.354-.146zM5 7c0 .552-.448 0-1 0s-1 .552-1 0a1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nMailbox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mailbox;\n"
  },
  {
    "path": "src/icons/mailbox2-flag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mailbox2Flag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mailbox2-flag', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.5 8.5V3.707l.854-.853A.5.5 0 0 0 11.5 2.5v-2A.5.5 0 0 0 11 0H9.5a.5.5 0 0 0-.5.5v8z\" />\n        <path d=\"M4 3h4v1H6.646A4 4 0 0 1 8 7v6h7V7a3 3 0 0 0-3-3V3a4 4 0 0 1 4 4v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V7a4 4 0 0 1 4-4m.585 4.157C4.836 7.264 5 7.334 5 7a1 1 0 0 0-2 0c0 .334.164.264.415.157C3.58 7.087 3.782 7 4 7s.42.086.585.157\" />\n      </svg>\n    );\n  },\n);\n\nMailbox2Flag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mailbox2Flag;\n"
  },
  {
    "path": "src/icons/mailbox2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mailbox2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mailbox2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 8.5h2.793l.853.854A.5.5 0 0 0 13 9.5h1a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5H9z\" />\n        <path d=\"M12 3H4a4 4 0 0 0-4 4v6a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a4 4 0 0 0-4-4M8 7a4 4 0 0 0-1.354-3H12a3 3 0 0 1 3 3v6H8zm-3.415.157C4.42 7.087 4.218 7 4 7s-.42.086-.585.157C3.164 7.264 3 7.334 3 7a1 1 0 0 1 2 0c0 .334-.164.264-.415.157\" />\n      </svg>\n    );\n  },\n);\n\nMailbox2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mailbox2;\n"
  },
  {
    "path": "src/icons/map-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MapFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-map-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 .5a.5.5 0 0 0-.598-.49L10.5.99 5.598.01a.5.5 0 0 0-.196 0l-5 1A.5.5 0 0 0 0 1.5v14a.5.5 0 0 0 .598.49l4.902-.98 4.902.98a.5.5 0 0 0 .196 0l5-1A.5.5 0 0 0 16 14.5zM5 14.09V1.11l.5-.1.5.1v12.98l-.402-.08a.5.5 0 0 0-.196 0zm5 .8V1.91l.402.08a.5.5 0 0 0 .196 0L11 1.91v12.98l-.5.1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nMapFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MapFill;\n"
  },
  {
    "path": "src/icons/map.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Map = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-map', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.817.113A.5.5 0 0 1 16 .5v14a.5.5 0 0 1-.402.49l-5 1a.5.5 0 0 1-.196 0L5.5 15.01l-4.902.98A.5.5 0 0 1 0 15.5v-14a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0L10.5.99l4.902-.98a.5.5 0 0 1 .415.103M10 1.91l-4-.8v12.98l4 .8zm1 12.98 4-.8V1.11l-4 .8zm-6-.8V1.11l-4 .8v12.98z\"\n        />\n      </svg>\n    );\n  },\n);\n\nMap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Map;\n"
  },
  {
    "path": "src/icons/markdown-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MarkdownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-markdown-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm11.5 1a.5.5 0 0 0-.5.5v3.793L9.854 8.146a.5.5 0 1 0-.708.708l2 2a.5.5 0 0 0 .708 0l2-2a.5.5 0 0 0-.708-.708L12 9.293V5.5a.5.5 0 0 0-.5-.5M3.56 7.01h.056l1.428 3.239h.774l1.42-3.24h.056V11h1.073V5.001h-1.2l-1.71 3.894h-.039l-1.71-3.894H2.5V11h1.06z\" />\n      </svg>\n    );\n  },\n);\n\nMarkdownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MarkdownFill;\n"
  },
  {
    "path": "src/icons/markdown.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Markdown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-markdown', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.146 8.146a.5.5 0 0 1 .708 0L11.5 9.793l1.646-1.647a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 0-.708\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.5 5a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"M3.56 11V7.01h.056l1.428 3.239h.774l1.42-3.24h.056V11h1.073V5.001h-1.2l-1.71 3.894h-.039l-1.71-3.894H2.5V11z\" />\n      </svg>\n    );\n  },\n);\n\nMarkdown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Markdown;\n"
  },
  {
    "path": "src/icons/marker-tip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MarkerTip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-marker-tip', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.5 6.064-1.281-4.696A.5.5 0 0 0 9.736 9H6.264a.5.5 0 0 0-.483.368l-1.28 4.696A6.97 6.97 0 0 0 8 15c1.275 0 2.47-.34 3.5-.936m.873-.598a7 7 0 1 0-8.746 0l1.19-4.36a1.5 1.5 0 0 1 1.31-1.1l1.155-3.851c.213-.713 1.223-.713 1.436 0l1.156 3.851a1.5 1.5 0 0 1 1.31 1.1z\" />\n      </svg>\n    );\n  },\n);\n\nMarkerTip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MarkerTip;\n"
  },
  {
    "path": "src/icons/mask.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mask = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mask', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.225 1.227A7.5 7.5 0 0 1 10.5 8a7.5 7.5 0 0 1-4.275 6.773 7 7 0 1 0 0-13.546M4.187.966a8 8 0 1 1 7.627 14.069A8 8 0 0 1 4.186.964z\" />\n      </svg>\n    );\n  },\n);\n\nMask.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mask;\n"
  },
  {
    "path": "src/icons/mastodon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mastodon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mastodon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.19 12.195c2.016-.24 3.77-1.475 3.99-2.603.348-1.778.32-4.339.32-4.339 0-3.47-2.286-4.488-2.286-4.488C12.062.238 10.083.017 8.027 0h-.05C5.92.017 3.942.238 2.79.765c0 0-2.285 1.017-2.285 4.488l-.002.662c-.004.64-.007 1.35.011 2.091.083 3.394.626 6.74 3.78 7.57 1.454.383 2.703.463 3.709.408 1.823-.1 2.847-.647 2.847-.647l-.06-1.317s-1.303.41-2.767.36c-1.45-.05-2.98-.156-3.215-1.928a4 4 0 0 1-.033-.496s1.424.346 3.228.428c1.103.05 2.137-.064 3.188-.189zm1.613-2.47H11.13v-4.08c0-.859-.364-1.295-1.091-1.295-.804 0-1.207.517-1.207 1.541v2.233H7.168V5.89c0-1.024-.403-1.541-1.207-1.541-.727 0-1.091.436-1.091 1.296v4.079H3.197V5.522q0-1.288.66-2.046c.456-.505 1.052-.764 1.793-.764.856 0 1.504.328 1.933.983L8 4.39l.417-.695c.429-.655 1.077-.983 1.934-.983.74 0 1.336.259 1.791.764q.662.757.661 2.046z\" />\n      </svg>\n    );\n  },\n);\n\nMastodon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mastodon;\n"
  },
  {
    "path": "src/icons/measuring-cup-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MeasuringCupFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-measuring-cup-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 0a2 2 0 0 1 2 2v5.959a1.041 1.041 0 0 1-2.049.264l-.02-.093-.849-5.096a.041.041 0 0 0-.082.007V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3.742a2.5 2.5 0 0 0-.732-1.767L.146.854A.5.5 0 0 1 .5 0zM4 13v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1zm0-2v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1zm0-2v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nMeasuringCupFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MeasuringCupFill;\n"
  },
  {
    "path": "src/icons/measuring-cup.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MeasuringCup = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-measuring-cup', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.038.309A.5.5 0 0 1 .5 0H14a2 2 0 0 1 2 2v5.959a1.041 1.041 0 0 1-2.069.17l-.849-5.094A.041.041 0 0 0 13 3.04V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3.743a2.5 2.5 0 0 0-.732-1.768L.146.854A.5.5 0 0 1 .038.309M1.708 1l.267.268A3.5 3.5 0 0 1 3 3.743V14a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V3.041a1.041 1.041 0 0 1 2.069-.17l.849 5.094A.041.041 0 0 0 15 7.96V2a1 1 0 0 0-1-1zM4 3h3.5a.5.5 0 1 1 0 1H4zm0 2h1.5a.5.5 0 1 1 0 1H4zm0 2h3.5a.5.5 0 1 1 0 1H4zm0 2h1.5a.5.5 0 1 1 0 1H4zm0 2h3.5a.5.5 0 0 1 0 1H4zm0 2h1.5a.5.5 0 0 1 0 1H4z\" />\n      </svg>\n    );\n  },\n);\n\nMeasuringCup.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MeasuringCup;\n"
  },
  {
    "path": "src/icons/medium.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Medium = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-medium', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.025 8c0 2.485-2.02 4.5-4.513 4.5A4.506 4.506 0 0 1 0 8c0-2.486 2.02-4.5 4.512-4.5A4.506 4.506 0 0 1 9.025 8m4.95 0c0 2.34-1.01 4.236-2.256 4.236S9.463 10.339 9.463 8c0-2.34 1.01-4.236 2.256-4.236S13.975 5.661 13.975 8M16 8c0 2.096-.355 3.795-.794 3.795-.438 0-.793-1.7-.793-3.795 0-2.096.355-3.795.794-3.795.438 0 .793 1.699.793 3.795\" />\n      </svg>\n    );\n  },\n);\n\nMedium.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Medium;\n"
  },
  {
    "path": "src/icons/megaphone-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MegaphoneFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-megaphone-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0zm-1 .724c-2.067.95-4.539 1.481-7 1.656v6.237a25 25 0 0 1 1.088.085c2.053.204 4.038.668 5.912 1.56zm-8 7.841V4.934c-.68.027-1.399.043-2.008.053A2.02 2.02 0 0 0 0 7v2c0 1.106.896 1.996 1.994 2.009l.496.008a64 64 0 0 1 1.51.048m1.39 1.081q.428.032.85.078l.253 1.69a1 1 0 0 1-.983 1.187h-.548a1 1 0 0 1-.916-.599l-1.314-2.48a66 66 0 0 1 1.692.064q.491.026.966.06\" />\n      </svg>\n    );\n  },\n);\n\nMegaphoneFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MegaphoneFill;\n"
  },
  {
    "path": "src/icons/megaphone.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Megaphone = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-megaphone', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-.214c-2.162-1.241-4.49-1.843-6.912-2.083l.405 2.712A1 1 0 0 1 5.51 15.1h-.548a1 1 0 0 1-.916-.599l-1.85-3.49-.202-.003A2.014 2.014 0 0 1 0 9V7a2.02 2.02 0 0 1 1.992-2.013 75 75 0 0 0 2.483-.075c3.043-.154 6.148-.849 8.525-2.199zm1 0v11a.5.5 0 0 0 1 0v-11a.5.5 0 0 0-1 0m-1 1.35c-2.344 1.205-5.209 1.842-8 2.033v4.233q.27.015.537.036c2.568.189 5.093.744 7.463 1.993zm-9 6.215v-4.13a95 95 0 0 1-1.992.052A1.02 1.02 0 0 0 1 7v2c0 .55.448 1.002 1.006 1.009A61 61 0 0 1 4 10.065m-.657.975 1.609 3.037.01.024h.548l-.002-.014-.443-2.966a68 68 0 0 0-1.722-.082z\" />\n      </svg>\n    );\n  },\n);\n\nMegaphone.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Megaphone;\n"
  },
  {
    "path": "src/icons/memory.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Memory = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-memory', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707-.293l.353-.353a.5.5 0 0 1 .708 0l.353.353a1 1 0 0 0 .707.293H15a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm.5 1h3a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5m5 0h3a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5m4.5.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5zM2 10v2H1v-2zm2 0v2H3v-2zm2 0v2H5v-2zm3 0v2H8v-2zm2 0v2h-1v-2zm2 0v2h-1v-2zm2 0v2h-1v-2z\" />\n      </svg>\n    );\n  },\n);\n\nMemory.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Memory;\n"
  },
  {
    "path": "src/icons/menu-app-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuAppFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-app-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h2A1.5 1.5 0 0 1 5 1.5v2A1.5 1.5 0 0 1 3.5 5h-2A1.5 1.5 0 0 1 0 3.5zM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuAppFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuAppFill;\n"
  },
  {
    "path": "src/icons/menu-app.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuApp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-app', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h2A1.5 1.5 0 0 1 5 1.5v2A1.5 1.5 0 0 1 3.5 5h-2A1.5 1.5 0 0 1 0 3.5zM1.5 1a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5zM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuApp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuApp;\n"
  },
  {
    "path": "src/icons/menu-button-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuButtonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-button-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 0A1.5 1.5 0 0 0 0 1.5v2A1.5 1.5 0 0 0 1.5 5h8A1.5 1.5 0 0 0 11 3.5v-2A1.5 1.5 0 0 0 9.5 0zm5.927 2.427A.25.25 0 0 1 7.604 2h.792a.25.25 0 0 1 .177.427l-.396.396a.25.25 0 0 1-.354 0zM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuButtonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuButtonFill;\n"
  },
  {
    "path": "src/icons/menu-button-wide-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuButtonWideFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-button-wide-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 0A1.5 1.5 0 0 0 0 1.5v2A1.5 1.5 0 0 0 1.5 5h13A1.5 1.5 0 0 0 16 3.5v-2A1.5 1.5 0 0 0 14.5 0zm1 2h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1m9.927.427A.25.25 0 0 1 12.604 2h.792a.25.25 0 0 1 .177.427l-.396.396a.25.25 0 0 1-.354 0zM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuButtonWideFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuButtonWideFill;\n"
  },
  {
    "path": "src/icons/menu-button-wide.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuButtonWide = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-button-wide', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v2A1.5 1.5 0 0 1 14.5 5h-13A1.5 1.5 0 0 1 0 3.5zM1.5 1a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M2 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m10.823.323-.396-.396A.25.25 0 0 1 12.604 2h.792a.25.25 0 0 1 .177.427l-.396.396a.25.25 0 0 1-.354 0M0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuButtonWide.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuButtonWide;\n"
  },
  {
    "path": "src/icons/menu-button.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuButton = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-button', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A1.5 1.5 0 0 1 1.5 0h8A1.5 1.5 0 0 1 11 1.5v2A1.5 1.5 0 0 1 9.5 5h-8A1.5 1.5 0 0 1 0 3.5zM1.5 1a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"m7.823 2.823-.396-.396A.25.25 0 0 1 7.604 2h.792a.25.25 0 0 1 .177.427l-.396.396a.25.25 0 0 1-.354 0M0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm1 3v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2zm14-1V8a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2zM2 8.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuButton.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuButton;\n"
  },
  {
    "path": "src/icons/menu-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646.146a.5.5 0 0 1 .708 0L10.207 2H14a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h3.793zM1 7v3h14V7zm14-1V4a1 1 0 0 0-1-1h-3.793a1 1 0 0 1-.707-.293L8 1.207l-1.5 1.5A1 1 0 0 1 5.793 3H2a1 1 0 0 0-1 1v2zm0 5H1v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zM2 4.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1h-8a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuDown;\n"
  },
  {
    "path": "src/icons/menu-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MenuUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-menu-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646 15.854a.5.5 0 0 0 .708 0L10.207 14H14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h3.793zM1 9V6h14v3zm14 1v2a1 1 0 0 1-1 1h-3.793a1 1 0 0 0-.707.293l-1.5 1.5-1.5-1.5A1 1 0 0 0 5.793 13H2a1 1 0 0 1-1-1v-2zm0-5H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zM2 11.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 0-1h-8a.5.5 0 0 0-.5.5m0-4a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11a.5.5 0 0 0-.5.5m0-4a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 0-1h-6a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nMenuUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MenuUp;\n"
  },
  {
    "path": "src/icons/messenger.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Messenger = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-messenger', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 7.76C0 3.301 3.493 0 8 0s8 3.301 8 7.76-3.493 7.76-8 7.76c-.81 0-1.586-.107-2.316-.307a.64.64 0 0 0-.427.03l-1.588.702a.64.64 0 0 1-.898-.566l-.044-1.423a.64.64 0 0 0-.215-.456C.956 12.108 0 10.092 0 7.76m5.546-1.459-2.35 3.728c-.225.358.214.761.551.506l2.525-1.916a.48.48 0 0 1 .578-.002l1.869 1.402a1.2 1.2 0 0 0 1.735-.32l2.35-3.728c.226-.358-.214-.761-.551-.506L9.728 7.381a.48.48 0 0 1-.578.002L7.281 5.98a1.2 1.2 0 0 0-1.735.32z\" />\n      </svg>\n    );\n  },\n);\n\nMessenger.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Messenger;\n"
  },
  {
    "path": "src/icons/meta.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Meta = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-meta', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.217 5.243C9.145 3.988 10.171 3 11.483 3 13.96 3 16 6.153 16.001 9.907c0 2.29-.986 3.725-2.757 3.725-1.543 0-2.395-.866-3.924-3.424l-.667-1.123-.118-.197a55 55 0 0 0-.53-.877l-1.178 2.08c-1.673 2.925-2.615 3.541-3.923 3.541C1.086 13.632 0 12.217 0 9.973 0 6.388 1.995 3 4.598 3q.477-.001.924.122c.31.086.611.22.913.407.577.359 1.154.915 1.782 1.714m1.516 2.224q-.378-.615-.727-1.133L9 6.326c.845-1.305 1.543-1.954 2.372-1.954 1.723 0 3.102 2.537 3.102 5.653 0 1.188-.39 1.877-1.195 1.877-.773 0-1.142-.51-2.61-2.87zM4.846 4.756c.725.1 1.385.634 2.34 2.001A212 212 0 0 0 5.551 9.3c-1.357 2.126-1.826 2.603-2.581 2.603-.777 0-1.24-.682-1.24-1.9 0-2.602 1.298-5.264 2.846-5.264q.137 0 .27.018\"\n        />\n      </svg>\n    );\n  },\n);\n\nMeta.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Meta;\n"
  },
  {
    "path": "src/icons/mic-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MicFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mic-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0z\" />\n        <path d=\"M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nMicFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MicFill;\n"
  },
  {
    "path": "src/icons/mic-mute-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MicMuteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mic-mute-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 8c0 .564-.094 1.107-.266 1.613l-.814-.814A4 4 0 0 0 12 8V7a.5.5 0 0 1 1 0zm-5 4c.818 0 1.578-.245 2.212-.667l.718.719a5 5 0 0 1-2.43.923V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 1 0v1a4 4 0 0 0 4 4m3-9v4.879L5.158 2.037A3.001 3.001 0 0 1 11 3\" />\n        <path d=\"M9.486 10.607 5 6.12V8a3 3 0 0 0 4.486 2.607m-7.84-9.253 12 12 .708-.708-12-12z\" />\n      </svg>\n    );\n  },\n);\n\nMicMuteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MicMuteFill;\n"
  },
  {
    "path": "src/icons/mic-mute.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MicMute = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mic-mute', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 8c0 .564-.094 1.107-.266 1.613l-.814-.814A4 4 0 0 0 12 8V7a.5.5 0 0 1 1 0zm-5 4c.818 0 1.578-.245 2.212-.667l.718.719a5 5 0 0 1-2.43.923V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 1 0v1a4 4 0 0 0 4 4m3-9v4.879l-1-1V3a2 2 0 0 0-3.997-.118l-.845-.845A3.001 3.001 0 0 1 11 3\" />\n        <path d=\"m9.486 10.607-.748-.748A2 2 0 0 1 6 8v-.878l-1-1V8a3 3 0 0 0 4.486 2.607m-7.84-9.253 12 12 .708-.708-12-12z\" />\n      </svg>\n    );\n  },\n);\n\nMicMute.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MicMute;\n"
  },
  {
    "path": "src/icons/mic.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mic', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M10 8a2 2 0 1 1-4 0V3a2 2 0 1 1 4 0zM8 0a3 3 0 0 0-3 3v5a3 3 0 0 0 6 0V3a3 3 0 0 0-3-3\" />\n      </svg>\n    );\n  },\n);\n\nMic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mic;\n"
  },
  {
    "path": "src/icons/microsoft-teams.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MicrosoftTeams = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-microsoft-teams', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.186 4.797a2.42 2.42 0 1 0-2.86-2.448h1.178c.929 0 1.682.753 1.682 1.682zm-4.295 7.738h2.613c.929 0 1.682-.753 1.682-1.682V5.58h2.783a.7.7 0 0 1 .682.716v4.294a4.197 4.197 0 0 1-4.093 4.293c-1.618-.04-3-.99-3.667-2.35Zm10.737-9.372a1.674 1.674 0 1 1-3.349 0 1.674 1.674 0 0 1 3.349 0m-2.238 9.488-.12-.002a5.2 5.2 0 0 0 .381-2.07V6.306a1.7 1.7 0 0 0-.15-.725h1.792c.39 0 .707.317.707.707v3.765a2.6 2.6 0 0 1-2.598 2.598z\" />\n        <path d=\"M.682 3.349h6.822c.377 0 .682.305.682.682v6.822a.68.68 0 0 1-.682.682H.682A.68.68 0 0 1 0 10.853V4.03c0-.377.305-.682.682-.682Zm5.206 2.596v-.72h-3.59v.72h1.357V9.66h.87V5.945z\" />\n      </svg>\n    );\n  },\n);\n\nMicrosoftTeams.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MicrosoftTeams;\n"
  },
  {
    "path": "src/icons/microsoft.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Microsoft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-microsoft', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.462 0H0v7.19h7.462zM16 0H8.538v7.19H16zM7.462 8.211H0V16h7.462zm8.538 0H8.538V16H16z\" />\n      </svg>\n    );\n  },\n);\n\nMicrosoft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Microsoft;\n"
  },
  {
    "path": "src/icons/minecart-loaded.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MinecartLoaded = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-minecart-loaded', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 15a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4m8-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4M.115 3.18A.5.5 0 0 1 .5 3h15a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 14 12H2a.5.5 0 0 1-.491-.408l-1.5-8a.5.5 0 0 1 .106-.411zm.987.82 1.313 7h11.17l1.313-7z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 1a2.498 2.498 0 0 1 4 0c.818 0 1.545.394 2 1 .67 0 1.552.57 2 1h-2c-.314 0-.611-.15-.8-.4-.274-.365-.71-.6-1.2-.6-.314 0-.611-.15-.8-.4a1.497 1.497 0 0 0-2.4 0c-.189.25-.486.4-.8.4-.507 0-.955.251-1.228.638q-.136.194-.308.362H3c.13-.147.401-.432.562-.545a1.6 1.6 0 0 0 .393-.393A2.5 2.5 0 0 1 6 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nMinecartLoaded.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MinecartLoaded;\n"
  },
  {
    "path": "src/icons/minecart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Minecart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-minecart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 15a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4m8-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4M.115 3.18A.5.5 0 0 1 .5 3h15a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 14 12H2a.5.5 0 0 1-.491-.408l-1.5-8a.5.5 0 0 1 .106-.411zm.987.82 1.313 7h11.17l1.313-7z\" />\n      </svg>\n    );\n  },\n);\n\nMinecart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Minecart;\n"
  },
  {
    "path": "src/icons/modem-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ModemFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-modem-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 0a1.5 1.5 0 0 0-1.5 1.5v11a1.5 1.5 0 0 0 1.404 1.497c-.35.305-.872.678-1.628 1.056A.5.5 0 0 0 5.5 16h5a.5.5 0 0 0 .224-.947c-.756-.378-1.278-.75-1.628-1.056A1.5 1.5 0 0 0 10.5 12.5v-11A1.5 1.5 0 0 0 9 0zm1 3a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m0 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m.5 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M8 9a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1\" />\n      </svg>\n    );\n  },\n);\n\nModemFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ModemFill;\n"
  },
  {
    "path": "src/icons/modem.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Modem = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-modem', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 1.5A1.5 1.5 0 0 1 7 0h2a1.5 1.5 0 0 1 1.5 1.5v11a1.5 1.5 0 0 1-1.404 1.497c.35.305.872.678 1.628 1.056A.5.5 0 0 1 10.5 16h-5a.5.5 0 0 1-.224-.947c.756-.378 1.277-.75 1.628-1.056A1.5 1.5 0 0 1 5.5 12.5zM7 1a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-11A.5.5 0 0 0 9 1z\" />\n        <path d=\"M8.5 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nModem.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Modem;\n"
  },
  {
    "path": "src/icons/moisture.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Moisture = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-moisture', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.5 0a.5.5 0 0 0 0 1H15v2.75h-.5a.5.5 0 0 0 0 1h.5V7.5h-1.5a.5.5 0 0 0 0 1H15v2.75h-.5a.5.5 0 0 0 0 1h.5V15h-1.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .5-.5V.5a.5.5 0 0 0-.5-.5zM7 1.5l.364-.343a.5.5 0 0 0-.728 0l-.002.002-.006.007-.022.023-.08.088a29 29 0 0 0-1.274 1.517c-.769.983-1.714 2.325-2.385 3.727C2.368 7.564 2 8.682 2 9.733 2 12.614 4.212 15 7 15s5-2.386 5-5.267c0-1.05-.368-2.169-.867-3.212-.671-1.402-1.616-2.744-2.385-3.727a29 29 0 0 0-1.354-1.605l-.022-.023-.006-.007-.002-.001zm0 0-.364-.343zm-.016.766L7 2.247l.016.019c.24.274.572.667.944 1.144.611.781 1.32 1.776 1.901 2.827H4.14c.58-1.051 1.29-2.046 1.9-2.827.373-.477.706-.87.945-1.144zM3 9.733c0-.755.244-1.612.638-2.496h6.724c.395.884.638 1.741.638 2.496C11 12.117 9.182 14 7 14s-4-1.883-4-4.267\" />\n      </svg>\n    );\n  },\n);\n\nMoisture.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Moisture;\n"
  },
  {
    "path": "src/icons/moon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MoonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-moon-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278\" />\n      </svg>\n    );\n  },\n);\n\nMoonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MoonFill;\n"
  },
  {
    "path": "src/icons/moon-stars-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MoonStarsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-moon-stars-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278\" />\n        <path d=\"M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.73 1.73 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.73 1.73 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.73 1.73 0 0 0 1.097-1.097zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.16 1.16 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.16 1.16 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732z\" />\n      </svg>\n    );\n  },\n);\n\nMoonStarsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MoonStarsFill;\n"
  },
  {
    "path": "src/icons/moon-stars.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MoonStars = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-moon-stars', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278M4.858 1.311A7.27 7.27 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.32 7.32 0 0 0 5.205-2.162q-.506.063-1.029.063c-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286\" />\n        <path d=\"M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.73 1.73 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.73 1.73 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.73 1.73 0 0 0 1.097-1.097zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.16 1.16 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.16 1.16 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732z\" />\n      </svg>\n    );\n  },\n);\n\nMoonStars.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MoonStars;\n"
  },
  {
    "path": "src/icons/moon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Moon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-moon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278M4.858 1.311A7.27 7.27 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.32 7.32 0 0 0 5.205-2.162q-.506.063-1.029.063c-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286\" />\n      </svg>\n    );\n  },\n);\n\nMoon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Moon;\n"
  },
  {
    "path": "src/icons/mortarboard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MortarboardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mortarboard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.211 2.047a.5.5 0 0 0-.422 0l-7.5 3.5a.5.5 0 0 0 .025.917l7.5 3a.5.5 0 0 0 .372 0L14 7.14V13a1 1 0 0 0-1 1v2h3v-2a1 1 0 0 0-1-1V6.739l.686-.275a.5.5 0 0 0 .025-.917z\" />\n        <path d=\"M4.176 9.032a.5.5 0 0 0-.656.327l-.5 1.7a.5.5 0 0 0 .294.605l4.5 1.8a.5.5 0 0 0 .372 0l4.5-1.8a.5.5 0 0 0 .294-.605l-.5-1.7a.5.5 0 0 0-.656-.327L8 10.466z\" />\n      </svg>\n    );\n  },\n);\n\nMortarboardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MortarboardFill;\n"
  },
  {
    "path": "src/icons/mortarboard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mortarboard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mortarboard', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.211 2.047a.5.5 0 0 0-.422 0l-7.5 3.5a.5.5 0 0 0 .025.917l7.5 3a.5.5 0 0 0 .372 0L14 7.14V13a1 1 0 0 0-1 1v2h3v-2a1 1 0 0 0-1-1V6.739l.686-.275a.5.5 0 0 0 .025-.917zM8 8.46 1.758 5.965 8 3.052l6.242 2.913z\" />\n        <path d=\"M4.176 9.032a.5.5 0 0 0-.656.327l-.5 1.7a.5.5 0 0 0 .294.605l4.5 1.8a.5.5 0 0 0 .372 0l4.5-1.8a.5.5 0 0 0 .294-.605l-.5-1.7a.5.5 0 0 0-.656-.327L8 10.466zm-.068 1.873.22-.748 3.496 1.311a.5.5 0 0 0 .352 0l3.496-1.311.22.748L8 12.46z\" />\n      </svg>\n    );\n  },\n);\n\nMortarboard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mortarboard;\n"
  },
  {
    "path": "src/icons/motherboard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MotherboardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-motherboard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 7h3V4H5z\" />\n        <path d=\"M1 2a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-2H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 9H1V8H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 6H1V5H.5a.5.5 0 0 1-.5-.5v-2A.5.5 0 0 1 .5 2zm11 .5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zm2 0a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zM3.5 10a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zM4 4h-.5a.5.5 0 0 0 0 1H4v1h-.5a.5.5 0 0 0 0 1H4a1 1 0 0 0 1 1v.5a.5.5 0 0 0 1 0V8h1v.5a.5.5 0 0 0 1 0V8a1 1 0 0 0 1-1h.5a.5.5 0 0 0 0-1H9V5h.5a.5.5 0 0 0 0-1H9a1 1 0 0 0-1-1v-.5a.5.5 0 0 0-1 0V3H6v-.5a.5.5 0 0 0-1 0V3a1 1 0 0 0-1 1m7 7.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nMotherboardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MotherboardFill;\n"
  },
  {
    "path": "src/icons/motherboard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Motherboard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-motherboard', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 2a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5m2 0a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5m-10 8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zM5 3a1 1 0 0 0-1 1h-.5a.5.5 0 0 0 0 1H4v1h-.5a.5.5 0 0 0 0 1H4a1 1 0 0 0 1 1v.5a.5.5 0 0 0 1 0V8h1v.5a.5.5 0 0 0 1 0V8a1 1 0 0 0 1-1h.5a.5.5 0 0 0 0-1H9V5h.5a.5.5 0 0 0 0-1H9a1 1 0 0 0-1-1v-.5a.5.5 0 0 0-1 0V3H6v-.5a.5.5 0 0 0-1 0zm0 1h3v3H5zm6.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M1 2a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-2H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 9H1V8H.5a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 .5 6H1V5H.5a.5.5 0 0 1-.5-.5v-2A.5.5 0 0 1 .5 2zm1 11a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nMotherboard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Motherboard;\n"
  },
  {
    "path": "src/icons/mouse-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MouseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 5a5 5 0 0 1 10 0v6a5 5 0 0 1-10 0zm5.5-1.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nMouseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MouseFill;\n"
  },
  {
    "path": "src/icons/mouse.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mouse = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 3m4 8a4 4 0 0 1-8 0V5a4 4 0 1 1 8 0zM8 0a5 5 0 0 0-5 5v6a5 5 0 0 0 10 0V5a5 5 0 0 0-5-5\" />\n      </svg>\n    );\n  },\n);\n\nMouse.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mouse;\n"
  },
  {
    "path": "src/icons/mouse2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mouse2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5.026C4.958.286 3 2.515 3 5.188V5.5h4.5zm1 0V5.5H13v-.312C13 2.515 11.042.286 8.5.026M13 6.5H3v4.313C3 13.658 5.22 16 8 16s5-2.342 5-5.188z\" />\n      </svg>\n    );\n  },\n);\n\nMouse2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mouse2Fill;\n"
  },
  {
    "path": "src/icons/mouse2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mouse2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 5.188C3 2.341 5.22 0 8 0s5 2.342 5 5.188v5.625C13 13.658 10.78 16 8 16s-5-2.342-5-5.188V5.189zm4.5-4.155C5.541 1.289 4 3.035 4 5.188V5.5h3.5zm1 0V5.5H12v-.313c0-2.152-1.541-3.898-3.5-4.154M12 6.5H4v4.313C4 13.145 5.81 15 8 15s4-1.855 4-4.188z\" />\n      </svg>\n    );\n  },\n);\n\nMouse2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mouse2;\n"
  },
  {
    "path": "src/icons/mouse3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mouse3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5.069A15 15 0 0 0 7 0q-.891.002-1.527.463c-.418.302-.717.726-.93 1.208-.386.873-.522 2.01-.54 3.206l4.497 1zM3.71 5.836 3.381 6A2.5 2.5 0 0 0 2 8.236v2.576C2 13.659 4.22 16 7 16h2c2.78 0 5-2.342 5-5.188V8.123l-9-2v.003l.008.353c.007.3.023.715.053 1.175.063.937.186 2.005.413 2.688a.5.5 0 1 1-.948.316c-.273-.817-.4-2-.462-2.937A30 30 0 0 1 4 6.003q0-.05.01-.1zM14 7.1V5.187c0-1.13-.272-2.044-.748-2.772-.474-.726-1.13-1.235-1.849-1.59A7.5 7.5 0 0 0 9.5.212v5.887l4.5 1z\" />\n      </svg>\n    );\n  },\n);\n\nMouse3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mouse3Fill;\n"
  },
  {
    "path": "src/icons/mouse3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Mouse3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-mouse3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 0q-.891.002-1.527.463c-.418.302-.717.726-.93 1.208C4.123 2.619 4 3.879 4 5.187v.504L3.382 6A2.5 2.5 0 0 0 2 8.236v2.576C2 13.659 4.22 16 7 16h2c2.78 0 5-2.342 5-5.188V5.186c0-1.13-.272-2.044-.748-2.772-.474-.726-1.13-1.235-1.849-1.59C9.981.123 8.26 0 7 0m2.5 6.099V1.232c.51.11 1.008.267 1.46.49.596.293 1.099.694 1.455 1.24.355.543.585 1.262.585 2.225v1.69zm-1-5.025v4.803L5 5.099c.006-1.242.134-2.293.457-3.024.162-.366.363-.63.602-.801C6.292 1.105 6.593 1 7 1c.468 0 .98.018 1.5.074M5 6.124 13 7.9v2.912C13 13.145 11.19 15 9 15H7c-2.19 0-4-1.855-4-4.188V8.236a1.5 1.5 0 0 1 .83-1.342l.187-.093c.01.265.024.58.047.92.062.938.19 2.12.462 2.937a.5.5 0 1 0 .948-.316c-.227-.683-.35-1.75-.413-2.688a29 29 0 0 1-.06-1.528v-.002z\" />\n      </svg>\n    );\n  },\n);\n\nMouse3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Mouse3;\n"
  },
  {
    "path": "src/icons/music-note-beamed.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MusicNoteBeamed = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-music-note-beamed', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 13c0 1.105-1.12 2-2.5 2S1 14.105 1 13s1.12-2 2.5-2 2.5.896 2.5 2m9-2c0 1.105-1.12 2-2.5 2s-2.5-.895-2.5-2 1.12-2 2.5-2 2.5.895 2.5 2\" />\n        <path fillRule=\"evenodd\" d=\"M14 11V2h1v9zM6 3v10H5V3z\" />\n        <path d=\"M5 2.905a1 1 0 0 1 .9-.995l8-.8a1 1 0 0 1 1.1.995V3L5 4z\" />\n      </svg>\n    );\n  },\n);\n\nMusicNoteBeamed.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MusicNoteBeamed;\n"
  },
  {
    "path": "src/icons/music-note-list.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MusicNoteList = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-music-note-list', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 13c0 1.105-1.12 2-2.5 2S7 14.105 7 13s1.12-2 2.5-2 2.5.895 2.5 2\" />\n        <path fillRule=\"evenodd\" d=\"M12 3v10h-1V3z\" />\n        <path d=\"M11 2.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 16 2.22V4l-5 1z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 11.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5m0-4A.5.5 0 0 1 .5 7H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5m0-4A.5.5 0 0 1 .5 3H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nMusicNoteList.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MusicNoteList;\n"
  },
  {
    "path": "src/icons/music-note.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MusicNote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-music-note', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 13c0 1.105-1.12 2-2.5 2S4 14.105 4 13s1.12-2 2.5-2 2.5.895 2.5 2\" />\n        <path fillRule=\"evenodd\" d=\"M9 3v10H8V3z\" />\n        <path d=\"M8 2.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 13 2.22V4L8 5z\" />\n      </svg>\n    );\n  },\n);\n\nMusicNote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MusicNote;\n"
  },
  {
    "path": "src/icons/music-player-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MusicPlayerFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-music-player-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm1 2h6a1 1 0 0 1 1 1v2.5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m3 12a3 3 0 1 1 0-6 3 3 0 0 1 0 6\" />\n      </svg>\n    );\n  },\n);\n\nMusicPlayerFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MusicPlayerFill;\n"
  },
  {
    "path": "src/icons/music-player.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst MusicPlayer = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-music-player', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1zm1 0v3h6V3zm3 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"M11 11a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-3 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nMusicPlayer.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default MusicPlayer;\n"
  },
  {
    "path": "src/icons/newspaper.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Newspaper = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-newspaper', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2.5A1.5 1.5 0 0 1 1.5 1h11A1.5 1.5 0 0 1 14 2.5v10.528c0 .3-.05.654-.238.972h.738a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 1 1 0v9a1.5 1.5 0 0 1-1.5 1.5H1.497A1.497 1.497 0 0 1 0 13.5zM12 14c.37 0 .654-.211.853-.441.092-.106.147-.279.147-.531V2.5a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5v11c0 .278.223.5.497.5z\" />\n        <path d=\"M2 3h10v2H2zm0 3h4v3H2zm0 4h4v1H2zm0 2h4v1H2zm5-6h2v1H7zm3 0h2v1h-2zM7 8h2v1H7zm3 0h2v1h-2zm-3 2h2v1H7zm3 0h2v1h-2zm-3 2h2v1H7zm3 0h2v1h-2z\" />\n      </svg>\n    );\n  },\n);\n\nNewspaper.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Newspaper;\n"
  },
  {
    "path": "src/icons/nintendo-switch.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NintendoSwitch = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nintendo-switch', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.34 8.005c0-4.38.01-7.972.023-7.982C9.373.01 10.036 0 10.831 0c1.153 0 1.51.01 1.743.05 1.73.298 3.045 1.6 3.373 3.326.046.242.053.809.053 4.61 0 4.06.005 4.537-.123 4.976-.022.076-.048.15-.08.242a4.14 4.14 0 0 1-3.426 2.767c-.317.033-2.889.046-2.978.013-.05-.02-.053-.752-.053-7.979m4.675.269a1.62 1.62 0 0 0-1.113-1.034 1.61 1.61 0 0 0-1.938 1.073 1.9 1.9 0 0 0-.014.935 1.63 1.63 0 0 0 1.952 1.107c.51-.136.908-.504 1.11-1.028.11-.285.113-.742.003-1.053M3.71 3.317c-.208.04-.526.199-.695.348-.348.301-.52.729-.494 1.232.013.262.03.332.136.544.155.321.39.556.712.715.222.11.278.123.567.133.261.01.354 0 .53-.06.719-.242 1.153-.94 1.03-1.656-.142-.852-.95-1.422-1.786-1.256\" />\n        <path d=\"M3.425.053a4.14 4.14 0 0 0-3.28 3.015C0 3.628-.01 3.956.005 8.3c.01 3.99.014 4.082.08 4.39.368 1.66 1.548 2.844 3.224 3.235.22.05.497.06 2.29.07 1.856.012 2.048.009 2.097-.04.05-.05.053-.69.053-7.94 0-5.374-.01-7.906-.033-7.952-.033-.06-.09-.063-2.03-.06-1.578.004-2.052.014-2.26.05Zm3 14.665-1.35-.016c-1.242-.013-1.375-.02-1.623-.083a2.81 2.81 0 0 1-2.08-2.167c-.074-.335-.074-8.579-.004-8.907a2.85 2.85 0 0 1 1.716-2.05c.438-.176.64-.196 2.058-.2l1.282-.003v13.426Z\" />\n      </svg>\n    );\n  },\n);\n\nNintendoSwitch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NintendoSwitch;\n"
  },
  {
    "path": "src/icons/node-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NodeMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-node-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M16 8a5 5 0 0 1-9.975.5H4A1.5 1.5 0 0 1 2.5 10h-1A1.5 1.5 0 0 1 0 8.5v-1A1.5 1.5 0 0 1 1.5 6h1A1.5 1.5 0 0 1 4 7.5h2.025A5 5 0 0 1 16 8m-2 0a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5A.5.5 0 0 0 14 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nNodeMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NodeMinusFill;\n"
  },
  {
    "path": "src/icons/node-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NodeMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-node-minus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8M6.025 7.5a5 5 0 1 1 0 1H4A1.5 1.5 0 0 1 2.5 10h-1A1.5 1.5 0 0 1 0 8.5v-1A1.5 1.5 0 0 1 1.5 6h1A1.5 1.5 0 0 1 4 7.5zM1.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM8 8a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5A.5.5 0 0 1 8 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nNodeMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NodeMinus;\n"
  },
  {
    "path": "src/icons/node-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NodePlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-node-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 13a5 5 0 1 0-4.975-5.5H4A1.5 1.5 0 0 0 2.5 6h-1A1.5 1.5 0 0 0 0 7.5v1A1.5 1.5 0 0 0 1.5 10h1A1.5 1.5 0 0 0 4 8.5h2.025A5 5 0 0 0 11 13m.5-7.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nNodePlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NodePlusFill;\n"
  },
  {
    "path": "src/icons/node-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NodePlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-node-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8M6.025 7.5a5 5 0 1 1 0 1H4A1.5 1.5 0 0 1 2.5 10h-1A1.5 1.5 0 0 1 0 8.5v-1A1.5 1.5 0 0 1 1.5 6h1A1.5 1.5 0 0 1 4 7.5zM11 5a.5.5 0 0 1 .5.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2A.5.5 0 0 1 11 5M1.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nNodePlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NodePlus;\n"
  },
  {
    "path": "src/icons/noise-reduction.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NoiseReduction = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-noise-reduction', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m.5-.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m-5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1.5-1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1-1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1-1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1-1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1-1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-3 5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m.5-.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1 8a7 7 0 0 1 12.83-3.875.5.5 0 1 0 .15.235q.197.322.359.667a.5.5 0 1 0 .359.932q.201.658.27 1.364a.5.5 0 1 0 .021.282 7 7 0 0 1-.091 1.592.5.5 0 1 0-.172.75 7 7 0 0 1-.418 1.091.5.5 0 0 0-.3.555 7 7 0 0 1-.296.454.5.5 0 0 0-.712.453c0 .111.036.214.098.297a7 7 0 0 1-.3.3.5.5 0 0 0-.75.614 7 7 0 0 1-.455.298.5.5 0 0 0-.555.3 7 7 0 0 1-1.092.417.5.5 0 1 0-.749.172 7 7 0 0 1-1.592.091.5.5 0 1 0-.282-.021 7 7 0 0 1-1.364-.27A.498.498 0 0 0 5.5 14a.5.5 0 0 0-.473.339 7 7 0 0 1-.668-.36A.5.5 0 0 0 5 13.5a.5.5 0 1 0-.875.33A7 7 0 0 1 1 8\" />\n      </svg>\n    );\n  },\n);\n\nNoiseReduction.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NoiseReduction;\n"
  },
  {
    "path": "src/icons/nut-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NutFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nut-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.58 1a1 1 0 0 0-.868.504l-3.428 6a1 1 0 0 0 0 .992l3.428 6A1 1 0 0 0 4.58 15h6.84a1 1 0 0 0 .868-.504l3.429-6a1 1 0 0 0 0-.992l-3.429-6A1 1 0 0 0 11.42 1zm5.018 9.696a3 3 0 1 1-3-5.196 3 3 0 0 1 3 5.196\" />\n      </svg>\n    );\n  },\n);\n\nNutFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NutFill;\n"
  },
  {
    "path": "src/icons/nut.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Nut = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nut', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m11.42 2 3.428 6-3.428 6H4.58L1.152 8 4.58 2zM4.58 1a1 1 0 0 0-.868.504l-3.428 6a1 1 0 0 0 0 .992l3.428 6A1 1 0 0 0 4.58 15h6.84a1 1 0 0 0 .868-.504l3.429-6a1 1 0 0 0 0-.992l-3.429-6A1 1 0 0 0 11.42 1z\" />\n        <path d=\"M6.848 5.933a2.5 2.5 0 1 0 2.5 4.33 2.5 2.5 0 0 0-2.5-4.33m-1.78 3.915a3.5 3.5 0 1 1 6.061-3.5 3.5 3.5 0 0 1-6.062 3.5z\" />\n      </svg>\n    );\n  },\n);\n\nNut.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Nut;\n"
  },
  {
    "path": "src/icons/nvidia.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Nvidia = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nvidia', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.635 7.146S3.08 5.012 5.97 4.791v-.774C2.77 4.273 0 6.983 0 6.983s1.57 4.536 5.97 4.952v-.824c-3.23-.406-4.335-3.965-4.335-3.965M5.97 9.475v.753c-2.44-.435-3.118-2.972-3.118-2.972S4.023 5.958 5.97 5.747v.828h-.004c-1.021-.123-1.82.83-1.82.83s.448 1.607 1.824 2.07M6 2l-.03 2.017A7 7 0 0 1 6.252 4c3.637-.123 6.007 2.983 6.007 2.983s-2.722 3.31-5.557 3.31q-.39-.002-.732-.065v.883q.292.039.61.04c2.638 0 4.546-1.348 6.394-2.943.307.246 1.561.842 1.819 1.104-1.757 1.47-5.852 2.657-8.173 2.657a7 7 0 0 1-.65-.034V14H16l.03-12zm-.03 3.747v-.956a6 6 0 0 1 .282-.015c2.616-.082 4.332 2.248 4.332 2.248S8.73 9.598 6.743 9.598c-.286 0-.542-.046-.773-.123v-2.9c1.018.123 1.223.572 1.835 1.593L9.167 7.02s-.994-1.304-2.67-1.304a5 5 0 0 0-.527.031\" />\n      </svg>\n    );\n  },\n);\n\nNvidia.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Nvidia;\n"
  },
  {
    "path": "src/icons/nvme-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst NvmeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nvme-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 7H5v2h1zm6 0H9v2h3z\" />\n        <path d=\"M2 4a.5.5 0 0 0-.5.5h-1A.5.5 0 0 0 0 5v1a.5.5 0 0 0 .5.5h1a.25.25 0 0 1 0 .5h-1a.5.5 0 0 0-.5.5V11a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5.5h13.5a.5.5 0 0 0 .5-.5V9a.5.5 0 0 0-.5-.5.5.5 0 0 1 0-1A.5.5 0 0 0 16 7V4.5a.5.5 0 0 0-.5-.5zm2 2.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4 0a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nNvmeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default NvmeFill;\n"
  },
  {
    "path": "src/icons/nvme.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Nvme = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-nvme', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 4.5A.5.5 0 0 1 2 4h13.5a.5.5 0 0 1 .5.5V7a.5.5 0 0 1-.5.5.5.5 0 0 0 0 1 .5.5 0 0 1 .5.5v2.5a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5h-1A.5.5 0 0 1 0 11V7.5A.5.5 0 0 1 .5 7h1a.25.25 0 0 0 0-.5h-1A.5.5 0 0 1 0 6V5a.5.5 0 0 1 .5-.5zm1 .5a.5.5 0 0 1-.5.5h-.5a1.25 1.25 0 1 1 0 2.5H1v2.5h1a.5.5 0 0 1 .5.5H15V9.415a1.5 1.5 0 0 1 0-2.83V5z\" />\n        <path d=\"M4 6.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zM5 7v2h1V7zm3-.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zM9 7v2h3V7z\" />\n      </svg>\n    );\n  },\n);\n\nNvme.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Nvme;\n"
  },
  {
    "path": "src/icons/octagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst OctagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-octagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.107 0a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353L4.54.146A.5.5 0 0 1 4.893 0z\" />\n      </svg>\n    );\n  },\n);\n\nOctagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default OctagonFill;\n"
  },
  {
    "path": "src/icons/octagon-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst OctagonHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-octagon-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM8 15h2.9l4.1-4.1V5.1L10.9 1H8z\" />\n      </svg>\n    );\n  },\n);\n\nOctagonHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default OctagonHalf;\n"
  },
  {
    "path": "src/icons/octagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Octagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-octagon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM5.1 1 1 5.1v5.8L5.1 15h5.8l4.1-4.1V5.1L10.9 1z\" />\n      </svg>\n    );\n  },\n);\n\nOctagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Octagon;\n"
  },
  {
    "path": "src/icons/openai.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Openai = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-openai', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.949 6.547a3.94 3.94 0 0 0-.348-3.273 4.11 4.11 0 0 0-4.4-1.934A4.1 4.1 0 0 0 8.423.2 4.15 4.15 0 0 0 6.305.086a4.1 4.1 0 0 0-1.891.948 4.04 4.04 0 0 0-1.158 1.753 4.1 4.1 0 0 0-1.563.679A4 4 0 0 0 .554 4.72a3.99 3.99 0 0 0 .502 4.731 3.94 3.94 0 0 0 .346 3.274 4.11 4.11 0 0 0 4.402 1.933c.382.425.852.764 1.377.995.526.231 1.095.35 1.67.346 1.78.002 3.358-1.132 3.901-2.804a4.1 4.1 0 0 0 1.563-.68 4 4 0 0 0 1.14-1.253 3.99 3.99 0 0 0-.506-4.716m-6.097 8.406a3.05 3.05 0 0 1-1.945-.694l.096-.054 3.23-1.838a.53.53 0 0 0 .265-.455v-4.49l1.366.778q.02.011.025.035v3.722c-.003 1.653-1.361 2.992-3.037 2.996m-6.53-2.75a2.95 2.95 0 0 1-.36-2.01l.095.057L5.29 12.09a.53.53 0 0 0 .527 0l3.949-2.246v1.555a.05.05 0 0 1-.022.041L6.473 13.3c-1.454.826-3.311.335-4.15-1.098m-.85-6.94A3.02 3.02 0 0 1 3.07 3.949v3.785a.51.51 0 0 0 .262.451l3.93 2.237-1.366.779a.05.05 0 0 1-.048 0L2.585 9.342a2.98 2.98 0 0 1-1.113-4.094zm11.216 2.571L8.747 5.576l1.362-.776a.05.05 0 0 1 .048 0l3.265 1.86a3 3 0 0 1 1.173 1.207 2.96 2.96 0 0 1-.27 3.2 3.05 3.05 0 0 1-1.36.997V8.279a.52.52 0 0 0-.276-.445m1.36-2.015-.097-.057-3.226-1.855a.53.53 0 0 0-.53 0L6.249 6.153V4.598a.04.04 0 0 1 .019-.04L9.533 2.7a3.07 3.07 0 0 1 3.257.139c.474.325.843.778 1.066 1.303.223.526.289 1.103.191 1.664zM5.503 8.575 4.139 7.8a.05.05 0 0 1-.026-.037V4.049c0-.57.166-1.127.476-1.607s.752-.864 1.275-1.105a3.08 3.08 0 0 1 3.234.41l-.096.054-3.23 1.838a.53.53 0 0 0-.265.455zm.742-1.577 1.758-1 1.762 1v2l-1.755 1-1.762-1z\" />\n      </svg>\n    );\n  },\n);\n\nOpenai.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Openai;\n"
  },
  {
    "path": "src/icons/opencollective.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Opencollective = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-opencollective', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillOpacity=\".4\"\n          d=\"M12.995 8.195c0 .937-.312 1.912-.78 2.693l1.99 1.99c.976-1.327 1.6-2.966 1.6-4.683 0-1.795-.624-3.434-1.561-4.76l-2.068 2.028c.468.781.78 1.679.78 2.732z\"\n        />\n        <path d=\"M8 13.151a4.995 4.995 0 1 1 0-9.99c1.015 0 1.951.273 2.732.82l1.95-2.03a7.805 7.805 0 1 0 .04 12.449l-1.951-2.03a5.07 5.07 0 0 1-2.732.781z\" />\n      </svg>\n    );\n  },\n);\n\nOpencollective.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Opencollective;\n"
  },
  {
    "path": "src/icons/optical-audio-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst OpticalAudioFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-optical-audio-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6a3 3 0 1 1 0 6 3 3 0 0 1 0-6m1 3a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n        <path d=\"M2.5 15a.5.5 0 0 1-.5-.5v-3.05a2.5 2.5 0 0 1 0-4.9V4.5a.5.5 0 0 1 .146-.354l2-2A.5.5 0 0 1 4.5 2h7a.5.5 0 0 1 .354.146l2 2A.5.5 0 0 1 14 4.5v2.05a2.5 2.5 0 0 1 0 4.9v3.05a.5.5 0 0 1-.5.5zM8 5a4 4 0 1 0 0 8 4 4 0 0 0 0-8\" />\n      </svg>\n    );\n  },\n);\n\nOpticalAudioFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default OpticalAudioFill;\n"
  },
  {
    "path": "src/icons/optical-audio.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst OpticalAudio = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-optical-audio', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n        <path d=\"M4.5 9a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0M8 6.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5\" />\n        <path d=\"M2 14.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-3.05a2.5 2.5 0 0 0 0-4.9V4.5a.5.5 0 0 0-.146-.354l-2-2A.5.5 0 0 0 11.5 2h-7a.5.5 0 0 0-.354.146l-2 2A.5.5 0 0 0 2 4.5v2.05a2.5 2.5 0 0 0 0 4.9zm1-.5v-3a.5.5 0 0 0-.5-.5 1.5 1.5 0 1 1 0-3A.5.5 0 0 0 3 7V4.707L4.707 3h6.586L13 4.707V7a.5.5 0 0 0 .5.5 1.5 1.5 0 0 1 0 3 .5.5 0 0 0-.5.5v3z\" />\n      </svg>\n    );\n  },\n);\n\nOpticalAudio.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default OpticalAudio;\n"
  },
  {
    "path": "src/icons/option.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Option = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-option', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2.5a.5.5 0 0 1 .5-.5h3.797a.5.5 0 0 1 .439.26L11 13h3.5a.5.5 0 0 1 0 1h-3.797a.5.5 0 0 1-.439-.26L5 3H1.5a.5.5 0 0 1-.5-.5m10 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nOption.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Option;\n"
  },
  {
    "path": "src/icons/outlet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Outlet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-outlet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.34 2.994c.275-.338.68-.494 1.074-.494h7.172c.393 0 .798.156 1.074.494.578.708 1.84 2.534 1.84 5.006s-1.262 4.297-1.84 5.006c-.276.338-.68.494-1.074.494H4.414c-.394 0-.799-.156-1.074-.494C2.762 12.297 1.5 10.472 1.5 8s1.262-4.297 1.84-5.006m1.074.506a.38.38 0 0 0-.299.126C3.599 4.259 2.5 5.863 2.5 8s1.099 3.74 1.615 4.374c.06.073.163.126.3.126h7.17c.137 0 .24-.053.3-.126.516-.633 1.615-2.237 1.615-4.374s-1.099-3.74-1.615-4.374a.38.38 0 0 0-.3-.126h-7.17z\" />\n        <path d=\"M6 5.5a.5.5 0 0 1 .5.5v1.5a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m4 0a.5.5 0 0 1 .5.5v1.5a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5M7 10v1h2v-1a1 1 0 0 0-2 0\" />\n      </svg>\n    );\n  },\n);\n\nOutlet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Outlet;\n"
  },
  {
    "path": "src/icons/p-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-p-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.5 4.002V12h1.283V9.164h1.668C10.033 9.164 11 8.08 11 6.586c0-1.482-.955-2.584-2.538-2.584zm2.77 4.072c.893 0 1.419-.545 1.419-1.488s-.526-1.482-1.42-1.482H6.778v2.97z\" />\n      </svg>\n    );\n  },\n);\n\nPCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PCircleFill;\n"
  },
  {
    "path": "src/icons/p-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-p-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.5 4.002h2.962C10.045 4.002 11 5.104 11 6.586c0 1.494-.967 2.578-2.55 2.578H6.784V12H5.5zm2.77 4.072c.893 0 1.419-.545 1.419-1.488s-.526-1.482-1.42-1.482H6.778v2.97z\" />\n      </svg>\n    );\n  },\n);\n\nPCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PCircle;\n"
  },
  {
    "path": "src/icons/p-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-p-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.27 8.074c.893 0 1.419-.545 1.419-1.488s-.526-1.482-1.42-1.482H6.778v2.97z\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.5 4.002h2.962C10.045 4.002 11 5.104 11 6.586c0 1.494-.967 2.578-2.55 2.578H6.784V12H5.5z\" />\n      </svg>\n    );\n  },\n);\n\nPSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PSquareFill;\n"
  },
  {
    "path": "src/icons/p-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-p-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 4.002h2.962C10.045 4.002 11 5.104 11 6.586c0 1.494-.967 2.578-2.55 2.578H6.784V12H5.5zm2.77 4.072c.893 0 1.419-.545 1.419-1.488s-.526-1.482-1.42-1.482H6.778v2.97z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nPSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PSquare;\n"
  },
  {
    "path": "src/icons/paint-bucket.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PaintBucket = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-paint-bucket', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.192 2.78c-.458-.677-.927-1.248-1.35-1.643a3 3 0 0 0-.71-.515c-.217-.104-.56-.205-.882-.02-.367.213-.427.63-.43.896-.003.304.064.664.173 1.044.196.687.556 1.528 1.035 2.402L.752 8.22c-.277.277-.269.656-.218.918.055.283.187.593.36.903.348.627.92 1.361 1.626 2.068.707.707 1.441 1.278 2.068 1.626.31.173.62.305.903.36.262.05.64.059.918-.218l5.615-5.615c.118.257.092.512.05.939-.03.292-.068.665-.073 1.176v.123h.003a1 1 0 0 0 1.993 0H14v-.057a1 1 0 0 0-.004-.117c-.055-1.25-.7-2.738-1.86-3.494a4 4 0 0 0-.211-.434c-.349-.626-.92-1.36-1.627-2.067S8.857 3.052 8.23 2.704c-.31-.172-.62-.304-.903-.36-.262-.05-.64-.058-.918.219zM4.16 1.867c.381.356.844.922 1.311 1.632l-.704.705c-.382-.727-.66-1.402-.813-1.938a3.3 3.3 0 0 1-.131-.673q.137.09.337.274m.394 3.965c.54.852 1.107 1.567 1.607 2.033a.5.5 0 1 0 .682-.732c-.453-.422-1.017-1.136-1.564-2.027l1.088-1.088q.081.181.183.365c.349.627.92 1.361 1.627 2.068.706.707 1.44 1.278 2.068 1.626q.183.103.365.183l-4.861 4.862-.068-.01c-.137-.027-.342-.104-.608-.252-.524-.292-1.186-.8-1.846-1.46s-1.168-1.32-1.46-1.846c-.147-.265-.225-.47-.251-.607l-.01-.068zm2.87-1.935a2.4 2.4 0 0 1-.241-.561c.135.033.324.11.562.241.524.292 1.186.8 1.846 1.46.45.45.83.901 1.118 1.31a3.5 3.5 0 0 0-1.066.091 11 11 0 0 1-.76-.694c-.66-.66-1.167-1.322-1.458-1.847z\" />\n      </svg>\n    );\n  },\n);\n\nPaintBucket.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PaintBucket;\n"
  },
  {
    "path": "src/icons/palette-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PaletteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-palette-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.433 10.07C14.133 10.585 16 11.15 16 8a8 8 0 1 0-8 8c1.996 0 1.826-1.504 1.649-3.08-.124-1.101-.252-2.237.351-2.92.465-.527 1.42-.237 2.433.07M8 5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m4.5 3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M5 6.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m.5 6.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nPaletteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PaletteFill;\n"
  },
  {
    "path": "src/icons/palette.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Palette = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-palette', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m4 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M5.5 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"M16 8c0 3.15-1.866 2.585-3.567 2.07C11.42 9.763 10.465 9.473 10 10c-.603.683-.475 1.819-.351 2.92C9.826 14.495 9.996 16 8 16a8 8 0 1 1 8-8m-8 7c.611 0 .654-.171.655-.176.078-.146.124-.464.07-1.119-.014-.168-.037-.37-.061-.591-.052-.464-.112-1.005-.118-1.462-.01-.707.083-1.61.704-2.314.369-.417.845-.578 1.272-.618.404-.038.812.026 1.16.104.343.077.702.186 1.025.284l.028.008c.346.105.658.199.953.266.653.148.904.083.991.024C14.717 9.38 15 9.161 15 8a7 7 0 1 0-7 7\" />\n      </svg>\n    );\n  },\n);\n\nPalette.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Palette;\n"
  },
  {
    "path": "src/icons/palette2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Palette2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-palette2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 .5A.5.5 0 0 1 .5 0h5a.5.5 0 0 1 .5.5v5.277l4.147-4.131a.5.5 0 0 1 .707 0l3.535 3.536a.5.5 0 0 1 0 .708L10.261 10H15.5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5H3a3 3 0 0 1-2.121-.879A3 3 0 0 1 0 13.044m6-.21 7.328-7.3-2.829-2.828L6 7.188zM4.5 13a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0M15 15v-4H9.258l-4.015 4zM0 .5v12.495zm0 12.495V13z\" />\n      </svg>\n    );\n  },\n);\n\nPalette2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Palette2;\n"
  },
  {
    "path": "src/icons/paperclip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Paperclip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-paperclip', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 3a2.5 2.5 0 0 1 5 0v9a1.5 1.5 0 0 1-3 0V5a.5.5 0 0 1 1 0v7a.5.5 0 0 0 1 0V3a1.5 1.5 0 1 0-3 0v9a2.5 2.5 0 0 0 5 0V5a.5.5 0 0 1 1 0v7a3.5 3.5 0 1 1-7 0z\" />\n      </svg>\n    );\n  },\n);\n\nPaperclip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Paperclip;\n"
  },
  {
    "path": "src/icons/paragraph.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Paragraph = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-paragraph', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.5 15a.5.5 0 0 1-.5-.5V2H9v12.5a.5.5 0 0 1-1 0V9H7a4 4 0 1 1 0-8h5.5a.5.5 0 0 1 0 1H11v12.5a.5.5 0 0 1-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nParagraph.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Paragraph;\n"
  },
  {
    "path": "src/icons/pass-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PassFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pass-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 0a2 2 0 1 1-4 0H3.5A1.5 1.5 0 0 0 2 1.5v13A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 12.5 0zM4.5 5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1m0 2h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nPassFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PassFill;\n"
  },
  {
    "path": "src/icons/pass.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pass = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pass', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n        <path d=\"M8 2a2 2 0 0 0 2-2h2.5A1.5 1.5 0 0 1 14 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-13A1.5 1.5 0 0 1 3.5 0H6a2 2 0 0 0 2 2m0 1a3 3 0 0 1-2.83-2H3.5a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-1.67A3 3 0 0 1 8 3\" />\n      </svg>\n    );\n  },\n);\n\nPass.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pass;\n"
  },
  {
    "path": "src/icons/passport-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PassportFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-passport-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4\" />\n        <path d=\"M2 3.252a1.5 1.5 0 0 1 1.232-1.476l8-1.454A1.5 1.5 0 0 1 13 1.797v.47A2 2 0 0 1 14 4v10a2 2 0 0 1-2 2H4a2 2 0 0 1-1.51-.688 1.5 1.5 0 0 1-.49-1.11V3.253ZM5 8a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0 4.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nPassportFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PassportFill;\n"
  },
  {
    "path": "src/icons/passport.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Passport = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-passport', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a3 3 0 1 0 0 6 3 3 0 0 0 0-6M6 8a2 2 0 1 1 4 0 2 2 0 0 1-4 0m-.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z\" />\n        <path d=\"M3.232 1.776A1.5 1.5 0 0 0 2 3.252v10.95c0 .445.191.838.49 1.11.367.422.908.688 1.51.688h8a2 2 0 0 0 2-2V4a2 2 0 0 0-1-1.732v-.47A1.5 1.5 0 0 0 11.232.321l-8 1.454ZM4 3h8a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nPassport.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Passport;\n"
  },
  {
    "path": "src/icons/patch-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.067.87a2.89 2.89 0 0 0-4.134 0l-.622.638-.89-.011a2.89 2.89 0 0 0-2.924 2.924l.01.89-.636.622a2.89 2.89 0 0 0 0 4.134l.637.622-.011.89a2.89 2.89 0 0 0 2.924 2.924l.89-.01.622.636a2.89 2.89 0 0 0 4.134 0l.622-.637.89.011a2.89 2.89 0 0 0 2.924-2.924l-.01-.89.636-.622a2.89 2.89 0 0 0 0-4.134l-.637-.622.011-.89a2.89 2.89 0 0 0-2.924-2.924l-.89.01zm.287 5.984-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7 8.793l2.646-2.647a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nPatchCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchCheckFill;\n"
  },
  {
    "path": "src/icons/patch-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.354 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7 8.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"m10.273 2.513-.921-.944.715-.698.622.637.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944 1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92.016-1.32a1.89 1.89 0 0 0-1.912-1.911z\" />\n      </svg>\n    );\n  },\n);\n\nPatchCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchCheck;\n"
  },
  {
    "path": "src/icons/patch-exclamation-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchExclamationFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-exclamation-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.067.87a2.89 2.89 0 0 0-4.134 0l-.622.638-.89-.011a2.89 2.89 0 0 0-2.924 2.924l.01.89-.636.622a2.89 2.89 0 0 0 0 4.134l.637.622-.011.89a2.89 2.89 0 0 0 2.924 2.924l.89-.01.622.636a2.89 2.89 0 0 0 4.134 0l.622-.637.89.011a2.89 2.89 0 0 0 2.924-2.924l-.01-.89.636-.622a2.89 2.89 0 0 0 0-4.134l-.637-.622.011-.89a2.89 2.89 0 0 0-2.924-2.924l-.89.01zM8 4c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995A.905.905 0 0 1 8 4m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nPatchExclamationFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchExclamationFill;\n"
  },
  {
    "path": "src/icons/patch-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.001 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.553.553 0 0 1-1.1 0z\" />\n        <path d=\"m10.273 2.513-.921-.944.715-.698.622.637.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944 1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92.016-1.32a1.89 1.89 0 0 0-1.912-1.911z\" />\n      </svg>\n    );\n  },\n);\n\nPatchExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchExclamation;\n"
  },
  {
    "path": "src/icons/patch-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.067.87a2.89 2.89 0 0 0-4.134 0l-.622.638-.89-.011a2.89 2.89 0 0 0-2.924 2.924l.01.89-.636.622a2.89 2.89 0 0 0 0 4.134l.637.622-.011.89a2.89 2.89 0 0 0 2.924 2.924l.89-.01.622.636a2.89 2.89 0 0 0 4.134 0l.622-.637.89.011a2.89 2.89 0 0 0 2.924-2.924l-.01-.89.636-.622a2.89 2.89 0 0 0 0-4.134l-.637-.622.011-.89a2.89 2.89 0 0 0-2.924-2.924l-.89.01zM6 7.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nPatchMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchMinusFill;\n"
  },
  {
    "path": "src/icons/patch-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"m10.273 2.513-.921-.944.715-.698.622.637.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944 1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92.016-1.32a1.89 1.89 0 0 0-1.912-1.911z\" />\n      </svg>\n    );\n  },\n);\n\nPatchMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchMinus;\n"
  },
  {
    "path": "src/icons/patch-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.067.87a2.89 2.89 0 0 0-4.134 0l-.622.638-.89-.011a2.89 2.89 0 0 0-2.924 2.924l.01.89-.636.622a2.89 2.89 0 0 0 0 4.134l.637.622-.011.89a2.89 2.89 0 0 0 2.924 2.924l.89-.01.622.636a2.89 2.89 0 0 0 4.134 0l.622-.637.89.011a2.89 2.89 0 0 0 2.924-2.924l-.01-.89.636-.622a2.89 2.89 0 0 0 0-4.134l-.637-.622.011-.89a2.89 2.89 0 0 0-2.924-2.924l-.89.01zM8.5 6v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nPatchPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchPlusFill;\n"
  },
  {
    "path": "src/icons/patch-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 5.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V10a.5.5 0 0 1-1 0V8.5H6a.5.5 0 0 1 0-1h1.5V6a.5.5 0 0 1 .5-.5\"\n        />\n        <path d=\"m10.273 2.513-.921-.944.715-.698.622.637.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944 1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92.016-1.32a1.89 1.89 0 0 0-1.912-1.911z\" />\n      </svg>\n    );\n  },\n);\n\nPatchPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchPlus;\n"
  },
  {
    "path": "src/icons/patch-question-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchQuestionFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-question-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.933.87a2.89 2.89 0 0 1 4.134 0l.622.638.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01zM7.002 11a1 1 0 1 0 2 0 1 1 0 0 0-2 0m1.602-2.027c.04-.534.198-.815.846-1.26.674-.475 1.05-1.09 1.05-1.986 0-1.325-.92-2.227-2.262-2.227-1.02 0-1.792.492-2.1 1.29A1.7 1.7 0 0 0 6 5.48c0 .393.203.64.545.64.272 0 .455-.147.564-.51.158-.592.525-.915 1.074-.915.61 0 1.03.446 1.03 1.084 0 .563-.208.885-.822 1.325-.619.433-.926.914-.926 1.64v.111c0 .428.208.745.585.745.336 0 .504-.24.554-.627\" />\n      </svg>\n    );\n  },\n);\n\nPatchQuestionFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchQuestionFill;\n"
  },
  {
    "path": "src/icons/patch-question.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PatchQuestion = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-patch-question', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.05 9.6c.336 0 .504-.24.554-.627.04-.534.198-.815.847-1.26.673-.475 1.049-1.09 1.049-1.986 0-1.325-.92-2.227-2.262-2.227-1.02 0-1.792.492-2.1 1.29A1.7 1.7 0 0 0 6 5.48c0 .393.203.64.545.64.272 0 .455-.147.564-.51.158-.592.525-.915 1.074-.915.61 0 1.03.446 1.03 1.084 0 .563-.208.885-.822 1.325-.619.433-.926.914-.926 1.64v.111c0 .428.208.745.585.745\" />\n        <path d=\"m10.273 2.513-.921-.944.715-.698.622.637.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944 1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92.016-1.32a1.89 1.89 0 0 0-1.912-1.911z\" />\n        <path d=\"M7.001 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0\" />\n      </svg>\n    );\n  },\n);\n\nPatchQuestion.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PatchQuestion;\n"
  },
  {
    "path": "src/icons/pause-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PauseBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m6.25-7C5.56 5 5 5.56 5 6.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C7.5 5.56 6.94 5 6.25 5m3.5 0c-.69 0-1.25.56-1.25 1.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C11 5.56 10.44 5 9.75 5\" />\n      </svg>\n    );\n  },\n);\n\nPauseBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PauseBtnFill;\n"
  },
  {
    "path": "src/icons/pause-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PauseBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause-btn', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.25 5C5.56 5 5 5.56 5 6.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C7.5 5.56 6.94 5 6.25 5m3.5 0c-.69 0-1.25.56-1.25 1.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C11 5.56 10.44 5 9.75 5\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nPauseBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PauseBtn;\n"
  },
  {
    "path": "src/icons/pause-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PauseCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.25 5C5.56 5 5 5.56 5 6.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C7.5 5.56 6.94 5 6.25 5m3.5 0c-.69 0-1.25.56-1.25 1.25v3.5a1.25 1.25 0 1 0 2.5 0v-3.5C11 5.56 10.44 5 9.75 5\" />\n      </svg>\n    );\n  },\n);\n\nPauseCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PauseCircleFill;\n"
  },
  {
    "path": "src/icons/pause-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PauseCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M5 6.25a1.25 1.25 0 1 1 2.5 0v3.5a1.25 1.25 0 1 1-2.5 0zm3.5 0a1.25 1.25 0 1 1 2.5 0v3.5a1.25 1.25 0 1 1-2.5 0z\" />\n      </svg>\n    );\n  },\n);\n\nPauseCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PauseCircle;\n"
  },
  {
    "path": "src/icons/pause-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PauseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5m5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5\" />\n      </svg>\n    );\n  },\n);\n\nPauseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PauseFill;\n"
  },
  {
    "path": "src/icons/pause.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pause = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pause', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5m4 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nPause.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pause;\n"
  },
  {
    "path": "src/icons/paypal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Paypal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-paypal', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.06 3.713c.12-1.071-.093-1.832-.702-2.526C12.628.356 11.312 0 9.626 0H4.734a.7.7 0 0 0-.691.59L2.005 13.509a.42.42 0 0 0 .415.486h2.756l-.202 1.28a.628.628 0 0 0 .62.726H8.14c.429 0 .793-.31.862-.731l.025-.13.48-3.043.03-.164.001-.007a.35.35 0 0 1 .348-.297h.38c1.266 0 2.425-.256 3.345-.91q.57-.403.993-1.005a4.94 4.94 0 0 0 .88-2.195c.242-1.246.13-2.356-.57-3.154a2.7 2.7 0 0 0-.76-.59l-.094-.061ZM6.543 8.82a.7.7 0 0 1 .321-.079H8.3c2.82 0 5.027-1.144 5.672-4.456l.003-.016q.326.186.548.438c.546.623.679 1.535.45 2.71-.272 1.397-.866 2.307-1.663 2.874-.802.57-1.842.815-3.043.815h-.38a.87.87 0 0 0-.863.734l-.03.164-.48 3.043-.024.13-.001.004a.35.35 0 0 1-.348.296H5.595a.106.106 0 0 1-.105-.123l.208-1.32z\" />\n      </svg>\n    );\n  },\n);\n\nPaypal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Paypal;\n"
  },
  {
    "path": "src/icons/pc-display-horizontal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PcDisplayHorizontal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pc-display-horizontal', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 0A1.5 1.5 0 0 0 0 1.5v7A1.5 1.5 0 0 0 1.5 10H6v1H1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-5v-1h4.5A1.5 1.5 0 0 0 16 8.5v-7A1.5 1.5 0 0 0 14.5 0zm0 1h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5M12 12.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m2 0a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0M1.5 12h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1M1 14.25a.25.25 0 0 1 .25-.25h5.5a.25.25 0 1 1 0 .5h-5.5a.25.25 0 0 1-.25-.25\" />\n      </svg>\n    );\n  },\n);\n\nPcDisplayHorizontal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PcDisplayHorizontal;\n"
  },
  {
    "path": "src/icons/pc-display.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PcDisplay = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pc-display', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1zm1 13.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0M9.5 1a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zM9 3.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5M1.5 2A1.5 1.5 0 0 0 0 3.5v7A1.5 1.5 0 0 0 1.5 12H6v2h-.5a.5.5 0 0 0 0 1H7v-4H1.5a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5H7V2z\" />\n      </svg>\n    );\n  },\n);\n\nPcDisplay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PcDisplay;\n"
  },
  {
    "path": "src/icons/pc-horizontal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PcHorizontal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pc-horizontal', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 6a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zm11.5 1a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1m2 0a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1M1 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5M1.25 9h5.5a.25.25 0 0 1 0 .5h-5.5a.25.25 0 0 1 0-.5\" />\n      </svg>\n    );\n  },\n);\n\nPcHorizontal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PcHorizontal;\n"
  },
  {
    "path": "src/icons/pc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pc', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 0a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm.5 14a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1m2 0a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1M5 1.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5M5.5 3h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nPc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pc;\n"
  },
  {
    "path": "src/icons/pci-card-network.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PciCardNetwork = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pci-card-network', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 9.5v-2h.214a.5.5 0 0 0 .5-.5v-.5h2.572V7a.5.5 0 0 0 .5.5h.214v2z\" />\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1h1a.5.5 0 0 1 .5.5V4h13.5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5H2v2.5a.5.5 0 0 1-1 0V2H.5a.5.5 0 0 1-.5-.5m6.714 4a.5.5 0 0 0-.5.5v.5H6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5V7a.5.5 0 0 0-.5-.5h-.214V6a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M3 12.5h3.5v1a.5.5 0 0 1-.5.5H3.5a.5.5 0 0 1-.5-.5zm8 0H7v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nPciCardNetwork.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PciCardNetwork;\n"
  },
  {
    "path": "src/icons/pci-card-sound.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PciCardSound = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pci-card-sound', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.562 7.39 8 7.04v1.92l-.438-.35a.5.5 0 0 0-.312-.11H6.5v-1h.75a.5.5 0 0 0 .312-.11\" />\n        <path d=\"M.5 1a.5.5 0 0 0 0 1H1v12.5a.5.5 0 0 0 1 0V12h13.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5H2V1.5a.5.5 0 0 0-.5-.5zm11.619 3.881q.15.173.28.367c.484.726.768 1.7.768 2.752s-.284 2.026-.768 2.752q-.13.195-.28.367l-.71-.71q.082-.096.158-.212c.36-.54.6-1.315.6-2.197s-.24-1.657-.6-2.198a3 3 0 0 0-.157-.212zm-1.375 4.863L10 9c.057 0 .17-.035.291-.217.12-.178.209-.454.209-.783 0-.33-.09-.605-.209-.783C10.17 7.035 10.057 7 10 7l.744-.744c.15.113.278.254.38.406.242.364.376.839.376 1.338s-.134.974-.377 1.338a1.7 1.7 0 0 1-.379.406M9 6v4a.5.5 0 0 1-.812.39L7.075 9.5H6a.5.5 0 0 1-.5-.5V7a.5.5 0 0 1 .5-.5h1.075l1.113-.89A.5.5 0 0 1 9 6\" />\n        <path d=\"M6.5 12.5H3v1a.5.5 0 0 0 .5.5H6a.5.5 0 0 0 .5-.5zm.5 1v-1h4v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nPciCardSound.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PciCardSound;\n"
  },
  {
    "path": "src/icons/pci-card.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PciCard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pci-card', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5A.5.5 0 0 1 .5 1h1a.5.5 0 0 1 .5.5V4h13.5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5H2v2.5a.5.5 0 0 1-1 0V2H.5a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M3 12.5h3.5v1a.5.5 0 0 1-.5.5H3.5a.5.5 0 0 1-.5-.5zm4 0h4v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nPciCard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PciCard;\n"
  },
  {
    "path": "src/icons/peace-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PeaceFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-peace-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 13.292A8 8 0 0 0 8.5.015v7.778zm-.708.708L8.5 9.206v6.778a7.97 7.97 0 0 0 4.792-1.986zM7.5 15.985V9.207L2.708 14A7.97 7.97 0 0 0 7.5 15.985M2 13.292A8 8 0 0 1 7.5.015v7.778z\" />\n      </svg>\n    );\n  },\n);\n\nPeaceFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PeaceFill;\n"
  },
  {
    "path": "src/icons/peace.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Peace = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-peace', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 1.018a7 7 0 0 0-4.79 11.566L7.5 7.793zm1 0v6.775l4.79 4.79A7 7 0 0 0 8.5 1.018m4.084 12.273L8.5 9.207v5.775a6.97 6.97 0 0 0 4.084-1.691M7.5 14.982V9.207l-4.084 4.084A6.97 6.97 0 0 0 7.5 14.982M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8\" />\n      </svg>\n    );\n  },\n);\n\nPeace.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Peace;\n"
  },
  {
    "path": "src/icons/pen-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PenFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pen-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m13.498.795.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001\" />\n      </svg>\n    );\n  },\n);\n\nPenFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PenFill;\n"
  },
  {
    "path": "src/icons/pen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pen', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m13.498.795.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001m-.644.766a.5.5 0 0 0-.707 0L1.95 11.756l-.764 3.057 3.057-.764L14.44 3.854a.5.5 0 0 0 0-.708z\" />\n      </svg>\n    );\n  },\n);\n\nPen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pen;\n"
  },
  {
    "path": "src/icons/pencil-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PencilFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pencil-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793 14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708zm.646 6.061L9.793 2.5 3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.5.5 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11z\" />\n      </svg>\n    );\n  },\n);\n\nPencilFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PencilFill;\n"
  },
  {
    "path": "src/icons/pencil-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PencilSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pencil-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPencilSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PencilSquare;\n"
  },
  {
    "path": "src/icons/pencil.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pencil = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pencil', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325\" />\n      </svg>\n    );\n  },\n);\n\nPencil.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pencil;\n"
  },
  {
    "path": "src/icons/pentagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PentagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pentagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.685.256a.5.5 0 0 1 .63 0l7.421 6.03a.5.5 0 0 1 .162.538l-2.788 8.827a.5.5 0 0 1-.476.349H3.366a.5.5 0 0 1-.476-.35L.102 6.825a.5.5 0 0 1 .162-.538l7.42-6.03Z\" />\n      </svg>\n    );\n  },\n);\n\nPentagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PentagonFill;\n"
  },
  {
    "path": "src/icons/pentagon-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PentagonHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pentagon-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 1.288 6.578 5.345a.5.5 0 0 1 .161.539l-2.362 7.479a.5.5 0 0 1-.476.349H8zm7.898 5.536a.5.5 0 0 0-.162-.538L8.316.256a.5.5 0 0 0-.631 0L.264 6.286a.5.5 0 0 0-.162.538l2.788 8.827a.5.5 0 0 0 .476.349h9.268a.5.5 0 0 0 .476-.35z\" />\n      </svg>\n    );\n  },\n);\n\nPentagonHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PentagonHalf;\n"
  },
  {
    "path": "src/icons/pentagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pentagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pentagon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.685 1.545a.5.5 0 0 1 .63 0l6.263 5.088a.5.5 0 0 1 .161.539l-2.362 7.479a.5.5 0 0 1-.476.349H4.099a.5.5 0 0 1-.476-.35L1.26 7.173a.5.5 0 0 1 .161-.54l6.263-5.087Zm8.213 5.28a.5.5 0 0 0-.162-.54L8.316.257a.5.5 0 0 0-.631 0L.264 6.286a.5.5 0 0 0-.162.538l2.788 8.827a.5.5 0 0 0 .476.349h9.268a.5.5 0 0 0 .476-.35l2.788-8.826Z\" />\n      </svg>\n    );\n  },\n);\n\nPentagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pentagon;\n"
  },
  {
    "path": "src/icons/people-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PeopleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-people-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n      </svg>\n    );\n  },\n);\n\nPeopleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PeopleFill;\n"
  },
  {
    "path": "src/icons/people.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst People = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-people', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4\" />\n      </svg>\n    );\n  },\n);\n\nPeople.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default People;\n"
  },
  {
    "path": "src/icons/percent.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Percent = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-percent', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.442 2.558a.625.625 0 0 1 0 .884l-10 10a.625.625 0 1 1-.884-.884l10-10a.625.625 0 0 1 .884 0M4.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m7 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n      </svg>\n    );\n  },\n);\n\nPercent.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Percent;\n"
  },
  {
    "path": "src/icons/perplexity.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Perplexity = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-perplexity', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 .188a.5.5 0 0 1 .503.5V4.03l3.022-2.92.059-.048a.51.51 0 0 1 .49-.054.5.5 0 0 1 .306.46v3.247h1.117l.1.01a.5.5 0 0 1 .403.49v5.558a.5.5 0 0 1-.503.5H12.38v3.258a.5.5 0 0 1-.312.462.51.51 0 0 1-.55-.11l-3.016-3.018v3.448c0 .275-.225.5-.503.5a.5.5 0 0 1-.503-.5v-3.448l-3.018 3.019a.51.51 0 0 1-.548.11.5.5 0 0 1-.312-.463v-3.258H2.503a.5.5 0 0 1-.503-.5V5.215l.01-.1c.047-.229.25-.4.493-.4H3.62V1.469l.006-.074a.5.5 0 0 1 .302-.387.51.51 0 0 1 .547.102l3.023 2.92V.687c0-.276.225-.5.503-.5M4.626 9.333v3.984l2.87-2.872v-4.01zm3.877 1.113 2.871 2.871V9.333l-2.87-2.897zm3.733-1.668a.5.5 0 0 1 .145.35v1.145h.612V5.715H9.201zm-9.23 1.495h.613V9.13c0-.131.052-.257.145-.35l3.033-3.064h-3.79zm1.62-5.558H6.76L4.626 2.652zm4.613 0h2.134V2.652z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPerplexity.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Perplexity;\n"
  },
  {
    "path": "src/icons/person-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-add', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0m-2-6a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonAdd;\n"
  },
  {
    "path": "src/icons/person-arms-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonArmsUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-arms-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"m5.93 6.704-.846 8.451a.768.768 0 0 0 1.523.203l.81-4.865a.59.59 0 0 1 1.165 0l.81 4.865a.768.768 0 0 0 1.523-.203l-.845-8.451A1.5 1.5 0 0 1 10.5 5.5L13 2.284a.796.796 0 0 0-1.239-.998L9.634 3.84a.7.7 0 0 1-.33.235c-.23.074-.665.176-1.304.176-.64 0-1.074-.102-1.305-.176a.7.7 0 0 1-.329-.235L4.239 1.286a.796.796 0 0 0-1.24.998l2.5 3.216c.317.316.475.758.43 1.204Z\" />\n      </svg>\n    );\n  },\n);\n\nPersonArmsUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonArmsUp;\n"
  },
  {
    "path": "src/icons/person-badge-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonBadgeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-badge-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm4.5 0a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zM8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6m5 2.755C12.146 12.825 10.623 12 8 12s-4.146.826-5 1.755V14a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonBadgeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonBadgeFill;\n"
  },
  {
    "path": "src/icons/person-badge.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonBadge = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-badge', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492z\" />\n      </svg>\n    );\n  },\n);\n\nPersonBadge.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonBadge;\n"
  },
  {
    "path": "src/icons/person-bounding-box.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonBoundingBox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-bounding-box', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 1a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-1 0v-3A1.5 1.5 0 0 1 1.5 0h3a.5.5 0 0 1 0 1zM11 .5a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 1 16 1.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 1-.5-.5M.5 11a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 1 0 1h-3A1.5 1.5 0 0 1 0 14.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a1.5 1.5 0 0 1-1.5 1.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm8-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n      </svg>\n    );\n  },\n);\n\nPersonBoundingBox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonBoundingBox;\n"
  },
  {
    "path": "src/icons/person-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L12.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n        />\n        <path d=\"M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nPersonCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonCheckFill;\n"
  },
  {
    "path": "src/icons/person-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonCheck;\n"
  },
  {
    "path": "src/icons/person-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1\"\n        />\n      </svg>\n    );\n  },\n);\n\nPersonCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonCircle;\n"
  },
  {
    "path": "src/icons/person-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 7.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nPersonDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonDashFill;\n"
  },
  {
    "path": "src/icons/person-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1m0-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonDash;\n"
  },
  {
    "path": "src/icons/person-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonDown;\n"
  },
  {
    "path": "src/icons/person-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nPersonExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonExclamation;\n"
  },
  {
    "path": "src/icons/person-fill-add.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillAdd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-add', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0m-2-6a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 13c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillAdd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillAdd;\n"
  },
  {
    "path": "src/icons/person-fill-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 13c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillCheck;\n"
  },
  {
    "path": "src/icons/person-fill-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1m0-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 13c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillDash;\n"
  },
  {
    "path": "src/icons/person-fill-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 9a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m.354 5.854 1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V10.5a.5.5 0 0 0-1 0v2.793l-.646-.647a.5.5 0 0 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 13c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillDown;\n"
  },
  {
    "path": "src/icons/person-fill-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1.5a.5.5 0 0 0 1 0V11a.5.5 0 0 0-.5-.5m0 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillExclamation;\n"
  },
  {
    "path": "src/icons/person-fill-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4m9.886-3.54c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillGear;\n"
  },
  {
    "path": "src/icons/person-fill-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h5v-1a2 2 0 0 1 .01-.2 4.49 4.49 0 0 1 1.534-3.693Q8.844 9.002 8 9c-5 0-6 3-6 4m7 0a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillLock;\n"
  },
  {
    "path": "src/icons/person-fill-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95ZM11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillSlash;\n"
  },
  {
    "path": "src/icons/person-fill-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 13c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillUp;\n"
  },
  {
    "path": "src/icons/person-fill-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFillX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h5.256A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1 1.544-3.393Q8.844 9.002 8 9c-5 0-6 3-6 4\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nPersonFillX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFillX;\n"
  },
  {
    "path": "src/icons/person-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nPersonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonFill;\n"
  },
  {
    "path": "src/icons/person-gear.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonGear = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-gear', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1zm3.63-4.54c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nPersonGear.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonGear;\n"
  },
  {
    "path": "src/icons/person-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h10s1 0 1-1-1-4-6-4-6 3-6 4m13.5-8.09c1.387-1.425 4.855 1.07 0 4.277-4.854-3.207-1.387-5.702 0-4.276Z\" />\n      </svg>\n    );\n  },\n);\n\nPersonHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonHeart;\n"
  },
  {
    "path": "src/icons/person-hearts.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonHearts = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-hearts', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.5 1.246c.832-.855 2.913.642 0 2.566-2.913-1.924-.832-3.421 0-2.566M9 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 8c0 1 1 1 1 1h10s1 0 1-1-1-4-6-4-6 3-6 4m13.5-8.09c1.387-1.425 4.855 1.07 0 4.277-4.854-3.207-1.387-5.702 0-4.276ZM15 2.165c.555-.57 1.942.428 0 1.711-1.942-1.283-.555-2.281 0-1.71Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPersonHearts.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonHearts;\n"
  },
  {
    "path": "src/icons/person-lines-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonLinesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-lines-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5 6s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zM11 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zm2 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonLinesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonLinesFill;\n"
  },
  {
    "path": "src/icons/person-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m0 5.996V14H3s-1 0-1-1 1-4 6-4q.845.002 1.544.107a4.5 4.5 0 0 0-.803.918A11 11 0 0 0 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664zM9 13a1 1 0 0 1 1-1v-1a2 2 0 1 1 4 0v1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zm3-3a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nPersonLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonLock;\n"
  },
  {
    "path": "src/icons/person-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nPersonPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonPlusFill;\n"
  },
  {
    "path": "src/icons/person-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nPersonPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonPlus;\n"
  },
  {
    "path": "src/icons/person-raised-hand.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonRaisedHand = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-raised-hand', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 6.207v9.043a.75.75 0 0 0 1.5 0V10.5a.5.5 0 0 1 1 0v4.75a.75.75 0 0 0 1.5 0v-8.5a.25.25 0 1 1 .5 0v2.5a.75.75 0 0 0 1.5 0V6.5a3 3 0 0 0-3-3H6.236a1 1 0 0 1-.447-.106l-.33-.165A.83.83 0 0 1 5 2.488V.75a.75.75 0 0 0-1.5 0v2.083c0 .715.404 1.37 1.044 1.689L5.5 5c.32.32.5.754.5 1.207\" />\n        <path d=\"M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n      </svg>\n    );\n  },\n);\n\nPersonRaisedHand.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonRaisedHand;\n"
  },
  {
    "path": "src/icons/person-rolodex.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonRolodex = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-rolodex', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 9.05a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n        <path d=\"M1 1a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h.5a.5.5 0 0 0 .5-.5.5.5 0 0 1 1 0 .5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5.5.5 0 0 1 1 0 .5.5 0 0 0 .5.5h.5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H6.707L6 1.293A1 1 0 0 0 5.293 1zm0 1h4.293L6 2.707A1 1 0 0 0 6.707 3H15v10h-.085a1.5 1.5 0 0 0-2.4-.63C11.885 11.223 10.554 10 8 10c-2.555 0-3.886 1.224-4.514 2.37a1.5 1.5 0 0 0-2.4.63H1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonRolodex.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonRolodex;\n"
  },
  {
    "path": "src/icons/person-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.879 10.414a2.501 2.501 0 0 0-3.465 3.465zm.707.707-3.465 3.465a2.501 2.501 0 0 0 3.465-3.465m-4.56-1.096a3.5 3.5 0 1 1 4.949 4.95 3.5 3.5 0 0 1-4.95-4.95ZM11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonSlash;\n"
  },
  {
    "path": "src/icons/person-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1v-1c0-1-1-4-6-4s-6 3-6 4v1a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonSquare;\n"
  },
  {
    "path": "src/icons/person-standing-dress.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonStandingDress = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-standing-dress', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m-.5 12.25V12h1v3.25a.75.75 0 0 0 1.5 0V12h1l-1-5v-.215a.285.285 0 0 1 .56-.078l.793 2.777a.711.711 0 1 0 1.364-.405l-1.065-3.461A3 3 0 0 0 8.784 3.5H7.216a3 3 0 0 0-2.868 2.118L3.283 9.079a.711.711 0 1 0 1.365.405l.793-2.777a.285.285 0 0 1 .56.078V7l-1 5h1v3.25a.75.75 0 0 0 1.5 0Z\" />\n      </svg>\n    );\n  },\n);\n\nPersonStandingDress.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonStandingDress;\n"
  },
  {
    "path": "src/icons/person-standing.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonStanding = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-standing', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M6 6.75v8.5a.75.75 0 0 0 1.5 0V10.5a.5.5 0 0 1 1 0v4.75a.75.75 0 0 0 1.5 0v-8.5a.25.25 0 1 1 .5 0v2.5a.75.75 0 0 0 1.5 0V6.5a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v2.75a.75.75 0 0 0 1.5 0v-2.5a.25.25 0 0 1 .5 0\" />\n      </svg>\n    );\n  },\n);\n\nPersonStanding.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonStanding;\n"
  },
  {
    "path": "src/icons/person-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.854 1.5 1.5a.5.5 0 0 1-.708.708L13 11.707V14.5a.5.5 0 0 1-1 0v-2.793l-.646.647a.5.5 0 0 1-.708-.708l1.5-1.5a.5.5 0 0 1 .708 0M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonUp;\n"
  },
  {
    "path": "src/icons/person-vcard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonVcardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-vcard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm9 1.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5M9 8a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 0-1h-4A.5.5 0 0 0 9 8m1 2.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5m-1 2C9 10.567 7.21 9 5 9c-2.086 0-3.8 1.398-3.984 3.181A1 1 0 0 0 2 13h6.96q.04-.245.04-.5M7 6a2 2 0 1 0-4 0 2 2 0 0 0 4 0\" />\n      </svg>\n    );\n  },\n);\n\nPersonVcardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonVcardFill;\n"
  },
  {
    "path": "src/icons/person-vcard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonVcard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-vcard', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4m4-2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5M9 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4A.5.5 0 0 1 9 8m1 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zM1 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8.96q.04-.245.04-.5C9 10.567 7.21 9 5 9c-2.086 0-3.8 1.398-3.984 3.181A1 1 0 0 1 1 12z\" />\n      </svg>\n    );\n  },\n);\n\nPersonVcard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonVcard;\n"
  },
  {
    "path": "src/icons/person-video.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonVideo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-video', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 9.05a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm10.798 11c-.453-1.27-1.76-3-4.798-3-3.037 0-4.345 1.73-4.798 3H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPersonVideo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonVideo;\n"
  },
  {
    "path": "src/icons/person-video2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonVideo2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-video2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 9.05a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zM1 3a1 1 0 0 1 1-1h2v2H1zm4 10V2h9a1 1 0 0 1 1 1v9c0 .285-.12.543-.31.725C14.15 11.494 12.822 10 10 10c-3.037 0-4.345 1.73-4.798 3zm-4-2h3v2H2a1 1 0 0 1-1-1zm3-1H1V8h3zm0-3H1V5h3z\" />\n      </svg>\n    );\n  },\n);\n\nPersonVideo2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonVideo2;\n"
  },
  {
    "path": "src/icons/person-video3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonVideo3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-video3', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 9.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-6 5.7c0 .8.8.8.8.8h6.4s.8 0 .8-.8-.8-3.2-4-3.2-4 2.4-4 3.2\" />\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h5.243c.122-.326.295-.668.526-1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v7.81c.353.23.656.496.91.783Q16 12.312 16 12V4a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nPersonVideo3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonVideo3;\n"
  },
  {
    "path": "src/icons/person-walking.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonWalking = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-walking', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M6.44 3.752A.75.75 0 0 1 7 3.5h1.445c.742 0 1.32.643 1.243 1.38l-.43 4.083a1.8 1.8 0 0 1-.088.395l-.318.906.213.242a.8.8 0 0 1 .114.175l2 4.25a.75.75 0 1 1-1.357.638l-1.956-4.154-1.68-1.921A.75.75 0 0 1 6 8.96l.138-2.613-.435.489-.464 2.786a.75.75 0 1 1-1.48-.246l.5-3a.75.75 0 0 1 .18-.375l2-2.25Z\" />\n        <path d=\"M6.25 11.745v-1.418l1.204 1.375.261.524a.8.8 0 0 1-.12.231l-2.5 3.25a.75.75 0 1 1-1.19-.914zm4.22-4.215-.494-.494.205-1.843.006-.067 1.124 1.124h1.44a.75.75 0 0 1 0 1.5H11a.75.75 0 0 1-.531-.22Z\" />\n      </svg>\n    );\n  },\n);\n\nPersonWalking.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonWalking;\n"
  },
  {
    "path": "src/icons/person-wheelchair.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonWheelchair = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-wheelchair', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m-.663 2.146a1.5 1.5 0 0 0-.47-2.115l-2.5-1.508a1.5 1.5 0 0 0-1.676.086l-2.329 1.75a.866.866 0 0 0 1.051 1.375L7.361 3.37l.922.71-2.038 2.445A4.73 4.73 0 0 0 2.628 7.67l1.064 1.065a3.25 3.25 0 0 1 4.574 4.574l1.064 1.063a4.73 4.73 0 0 0 1.09-3.998l1.043-.292-.187 2.991a.872.872 0 1 0 1.741.098l.206-4.121A1 1 0 0 0 12.224 8h-2.79zM3.023 9.48a3.25 3.25 0 0 0 4.496 4.496l1.077 1.077a4.75 4.75 0 0 1-6.65-6.65z\" />\n      </svg>\n    );\n  },\n);\n\nPersonWheelchair.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonWheelchair;\n"
  },
  {
    "path": "src/icons/person-workspace.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonWorkspace = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-workspace', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 16s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-5.95a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v9.5A1.5 1.5 0 0 0 1.5 14h.653a5.4 5.4 0 0 1 1.066-2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v9h-2.219c.554.654.89 1.373 1.066 2h.653a1.5 1.5 0 0 0 1.5-1.5V3a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nPersonWorkspace.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonWorkspace;\n"
  },
  {
    "path": "src/icons/person-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m6.146-2.854a.5.5 0 0 1 .708 0L14 6.293l1.146-1.147a.5.5 0 0 1 .708.708L14.707 7l1.147 1.146a.5.5 0 0 1-.708.708L14 7.707l-1.146 1.147a.5.5 0 0 1-.708-.708L13.293 7l-1.147-1.146a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nPersonXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonXFill;\n"
  },
  {
    "path": "src/icons/person-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PersonX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-.646-4.854.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 0 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nPersonX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PersonX;\n"
  },
  {
    "path": "src/icons/person.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Person = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-person', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z\" />\n      </svg>\n    );\n  },\n);\n\nPerson.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Person;\n"
  },
  {
    "path": "src/icons/phone-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm6 11a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n      </svg>\n    );\n  },\n);\n\nPhoneFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneFill;\n"
  },
  {
    "path": "src/icons/phone-flip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneFlip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-flip', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11 1H5a1 1 0 0 0-1 1v6a.5.5 0 0 1-1 0V2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a.5.5 0 0 1-1 0V2a1 1 0 0 0-1-1m1 13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a.5.5 0 0 0-1 0v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-2a.5.5 0 0 0-1 0zM1.713 7.954a.5.5 0 1 0-.419-.908c-.347.16-.654.348-.882.57C.184 7.842 0 8.139 0 8.5c0 .546.408.94.823 1.201.44.278 1.043.51 1.745.696C3.978 10.773 5.898 11 8 11q.148 0 .294-.002l-1.148 1.148a.5.5 0 0 0 .708.708l2-2a.5.5 0 0 0 0-.708l-2-2a.5.5 0 1 0-.708.708l1.145 1.144L8 10c-2.04 0-3.87-.221-5.174-.569-.656-.175-1.151-.374-1.47-.575C1.012 8.639 1 8.506 1 8.5c0-.003 0-.059.112-.17.115-.112.31-.242.6-.376Zm12.993-.908a.5.5 0 0 0-.419.908c.292.134.486.264.6.377.113.11.113.166.113.169s0 .065-.13.187c-.132.122-.352.26-.677.4-.645.28-1.596.523-2.763.687a.5.5 0 0 0 .14.99c1.212-.17 2.26-.43 3.02-.758.38-.164.713-.357.96-.587.246-.229.45-.537.45-.919 0-.362-.184-.66-.412-.883s-.535-.411-.882-.571M7.5 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPhoneFlip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneFlip;\n"
  },
  {
    "path": "src/icons/phone-landscape-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneLandscapeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-landscape-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 12.5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2zm11-6a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nPhoneLandscapeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneLandscapeFill;\n"
  },
  {
    "path": "src/icons/phone-landscape.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneLandscape = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-landscape', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 4.5a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm-1 6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2z\" />\n        <path d=\"M14 7.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n      </svg>\n    );\n  },\n);\n\nPhoneLandscape.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneLandscape;\n"
  },
  {
    "path": "src/icons/phone-vibrate-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneVibrateFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-vibrate-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm5 7a1 1 0 1 0-2 0 1 1 0 0 0 2 0M1.807 4.734a.5.5 0 1 0-.884-.468A8 8 0 0 0 0 8c0 1.347.334 2.618.923 3.734a.5.5 0 1 0 .884-.468A7 7 0 0 1 1 8c0-1.18.292-2.292.807-3.266m13.27-.468a.5.5 0 0 0-.884.468C14.708 5.708 15 6.819 15 8c0 1.18-.292 2.292-.807 3.266a.5.5 0 0 0 .884.468A8 8 0 0 0 16 8a8 8 0 0 0-.923-3.734M3.34 6.182a.5.5 0 1 0-.93-.364A6 6 0 0 0 2 8c0 .769.145 1.505.41 2.182a.5.5 0 1 0 .93-.364A5 5 0 0 1 3 8c0-.642.12-1.255.34-1.818m10.25-.364a.5.5 0 0 0-.93.364c.22.563.34 1.176.34 1.818s-.12 1.255-.34 1.818a.5.5 0 0 0 .93.364C13.856 9.505 14 8.769 14 8s-.145-1.505-.41-2.182\" />\n      </svg>\n    );\n  },\n);\n\nPhoneVibrateFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneVibrateFill;\n"
  },
  {
    "path": "src/icons/phone-vibrate.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PhoneVibrate = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone-vibrate', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM6 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2M1.599 4.058a.5.5 0 0 1 .208.676A7 7 0 0 0 1 8c0 1.18.292 2.292.807 3.266a.5.5 0 0 1-.884.468A8 8 0 0 1 0 8c0-1.347.334-2.619.923-3.734a.5.5 0 0 1 .676-.208m12.802 0a.5.5 0 0 1 .676.208A8 8 0 0 1 16 8a8 8 0 0 1-.923 3.734.5.5 0 0 1-.884-.468A7 7 0 0 0 15 8c0-1.18-.292-2.292-.807-3.266a.5.5 0 0 1 .208-.676M3.057 5.534a.5.5 0 0 1 .284.648A5 5 0 0 0 3 8c0 .642.12 1.255.34 1.818a.5.5 0 1 1-.93.364A6 6 0 0 1 2 8c0-.769.145-1.505.41-2.182a.5.5 0 0 1 .647-.284m9.886 0a.5.5 0 0 1 .648.284C13.855 6.495 14 7.231 14 8s-.145 1.505-.41 2.182a.5.5 0 0 1-.93-.364C12.88 9.255 13 8.642 13 8s-.12-1.255-.34-1.818a.5.5 0 0 1 .283-.648\" />\n      </svg>\n    );\n  },\n);\n\nPhoneVibrate.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PhoneVibrate;\n"
  },
  {
    "path": "src/icons/phone.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Phone = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-phone', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM5 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nPhone.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Phone;\n"
  },
  {
    "path": "src/icons/pie-chart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PieChartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pie-chart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.985 8.5H8.207l-5.5 5.5a8 8 0 0 0 13.277-5.5zM2 13.292A8 8 0 0 1 7.5.015v7.778zM8.5.015V7.5h7.485A8 8 0 0 0 8.5.015\" />\n      </svg>\n    );\n  },\n);\n\nPieChartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PieChartFill;\n"
  },
  {
    "path": "src/icons/pie-chart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PieChart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pie-chart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 1.018a7 7 0 0 0-4.79 11.566L7.5 7.793zm1 0V7.5h6.482A7 7 0 0 0 8.5 1.018M14.982 8.5H8.207l-4.79 4.79A7 7 0 0 0 14.982 8.5M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8\" />\n      </svg>\n    );\n  },\n);\n\nPieChart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PieChart;\n"
  },
  {
    "path": "src/icons/piggy-bank-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PiggyBankFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-piggy-bank-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.964 1.527c-2.977 0-5.571 1.704-6.32 4.125h-.55A1 1 0 0 0 .11 6.824l.254 1.46a1.5 1.5 0 0 0 1.478 1.243h.263c.3.513.688.978 1.145 1.382l-.729 2.477a.5.5 0 0 0 .48.641h2a.5.5 0 0 0 .471-.332l.482-1.351c.635.173 1.31.267 2.011.267.707 0 1.388-.095 2.028-.272l.543 1.372a.5.5 0 0 0 .465.316h2a.5.5 0 0 0 .478-.645l-.761-2.506C13.81 9.895 14.5 8.559 14.5 7.069q0-.218-.02-.431c.261-.11.508-.266.705-.444.315.306.815.306.815-.417 0 .223-.5.223-.461-.026a1 1 0 0 0 .09-.255.7.7 0 0 0-.202-.645.58.58 0 0 0-.707-.098.74.74 0 0 0-.375.562c-.024.243.082.48.32.654a2 2 0 0 1-.259.153c-.534-2.664-3.284-4.595-6.442-4.595m7.173 3.876a.6.6 0 0 1-.098.21l-.044-.025c-.146-.09-.157-.175-.152-.223a.24.24 0 0 1 .117-.173c.049-.027.08-.021.113.012a.2.2 0 0 1 .064.199m-8.999-.65a.5.5 0 1 1-.276-.96A7.6 7.6 0 0 1 7.964 3.5c.763 0 1.497.11 2.18.315a.5.5 0 1 1-.287.958A6.6 6.6 0 0 0 7.964 4.5c-.64 0-1.255.09-1.826.254ZM5 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0\" />\n      </svg>\n    );\n  },\n);\n\nPiggyBankFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PiggyBankFill;\n"
  },
  {
    "path": "src/icons/piggy-bank.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PiggyBank = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-piggy-bank', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.138-1.496A6.6 6.6 0 0 1 7.964 4.5c.666 0 1.303.097 1.893.273a.5.5 0 0 0 .286-.958A7.6 7.6 0 0 0 7.964 3.5c-.734 0-1.441.103-2.102.292a.5.5 0 1 0 .276.962\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.964 1.527c-2.977 0-5.571 1.704-6.32 4.125h-.55A1 1 0 0 0 .11 6.824l.254 1.46a1.5 1.5 0 0 0 1.478 1.243h.263c.3.513.688.978 1.145 1.382l-.729 2.477a.5.5 0 0 0 .48.641h2a.5.5 0 0 0 .471-.332l.482-1.351c.635.173 1.31.267 2.011.267.707 0 1.388-.095 2.028-.272l.543 1.372a.5.5 0 0 0 .465.316h2a.5.5 0 0 0 .478-.645l-.761-2.506C13.81 9.895 14.5 8.559 14.5 7.069q0-.218-.02-.431c.261-.11.508-.266.705-.444.315.306.815.306.815-.417 0 .223-.5.223-.461-.026a1 1 0 0 0 .09-.255.7.7 0 0 0-.202-.645.58.58 0 0 0-.707-.098.74.74 0 0 0-.375.562c-.024.243.082.48.32.654a2 2 0 0 1-.259.153c-.534-2.664-3.284-4.595-6.442-4.595M2.516 6.26c.455-2.066 2.667-3.733 5.448-3.733 3.146 0 5.536 2.114 5.536 4.542 0 1.254-.624 2.41-1.67 3.248a.5.5 0 0 0-.165.535l.66 2.175h-.985l-.59-1.487a.5.5 0 0 0-.629-.288c-.661.23-1.39.359-2.157.359a6.6 6.6 0 0 1-2.157-.359.5.5 0 0 0-.635.304l-.525 1.471h-.979l.633-2.15a.5.5 0 0 0-.17-.534 4.65 4.65 0 0 1-1.284-1.541.5.5 0 0 0-.446-.275h-.56a.5.5 0 0 1-.492-.414l-.254-1.46h.933a.5.5 0 0 0 .488-.393m12.621-.857a.6.6 0 0 1-.098.21l-.044-.025c-.146-.09-.157-.175-.152-.223a.24.24 0 0 1 .117-.173c.049-.027.08-.021.113.012a.2.2 0 0 1 .064.199\"\n        />\n      </svg>\n    );\n  },\n);\n\nPiggyBank.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PiggyBank;\n"
  },
  {
    "path": "src/icons/pin-angle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PinAngleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin-angle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a6 6 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707s.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a6 6 0 0 1 1.013.16l3.134-3.133a3 3 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146\" />\n      </svg>\n    );\n  },\n);\n\nPinAngleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PinAngleFill;\n"
  },
  {
    "path": "src/icons/pin-angle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PinAngle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin-angle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a6 6 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707s.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a6 6 0 0 1 1.013.16l3.134-3.133a3 3 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146m.122 2.112v-.002zm0-.002v.002a.5.5 0 0 1-.122.51L6.293 6.878a.5.5 0 0 1-.511.12H5.78l-.014-.004a5 5 0 0 0-.288-.076 5 5 0 0 0-.765-.116c-.422-.028-.836.008-1.175.15l5.51 5.509c.141-.34.177-.753.149-1.175a5 5 0 0 0-.192-1.054l-.004-.013v-.001a.5.5 0 0 1 .12-.512l3.536-3.535a.5.5 0 0 1 .532-.115l.096.022c.087.017.208.034.344.034q.172.002.343-.04L9.927 2.028q-.042.172-.04.343a1.8 1.8 0 0 0 .062.46z\" />\n      </svg>\n    );\n  },\n);\n\nPinAngle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PinAngle;\n"
  },
  {
    "path": "src/icons/pin-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PinFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.146.146A.5.5 0 0 1 4.5 0h7a.5.5 0 0 1 .5.5c0 .68-.342 1.174-.646 1.479-.126.125-.25.224-.354.298v4.431l.078.048c.203.127.476.314.751.555C12.36 7.775 13 8.527 13 9.5a.5.5 0 0 1-.5.5h-4v4.5c0 .276-.224 1.5-.5 1.5s-.5-1.224-.5-1.5V10h-4a.5.5 0 0 1-.5-.5c0-.973.64-1.725 1.17-2.189A6 6 0 0 1 5 6.708V2.277a3 3 0 0 1-.354-.298C4.342 1.674 4 1.179 4 .5a.5.5 0 0 1 .146-.354\" />\n      </svg>\n    );\n  },\n);\n\nPinFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PinFill;\n"
  },
  {
    "path": "src/icons/pin-map-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PinMapFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin-map-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.1 11.2a.5.5 0 0 1 .4-.2H6a.5.5 0 0 1 0 1H3.75L1.5 15h13l-2.25-3H10a.5.5 0 0 1 0-1h2.5a.5.5 0 0 1 .4.2l3 4a.5.5 0 0 1-.4.8H.5a.5.5 0 0 1-.4-.8z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPinMapFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PinMapFill;\n"
  },
  {
    "path": "src/icons/pin-map.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PinMap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin-map', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.1 11.2a.5.5 0 0 1 .4-.2H6a.5.5 0 0 1 0 1H3.75L1.5 15h13l-2.25-3H10a.5.5 0 0 1 0-1h2.5a.5.5 0 0 1 .4.2l3 4a.5.5 0 0 1-.4.8H.5a.5.5 0 0 1-.4-.8z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 1a3 3 0 1 0 0 6 3 3 0 0 0 0-6M4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPinMap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PinMap;\n"
  },
  {
    "path": "src/icons/pin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.146.146A.5.5 0 0 1 4.5 0h7a.5.5 0 0 1 .5.5c0 .68-.342 1.174-.646 1.479-.126.125-.25.224-.354.298v4.431l.078.048c.203.127.476.314.751.555C12.36 7.775 13 8.527 13 9.5a.5.5 0 0 1-.5.5h-4v4.5c0 .276-.224 1.5-.5 1.5s-.5-1.224-.5-1.5V10h-4a.5.5 0 0 1-.5-.5c0-.973.64-1.725 1.17-2.189A6 6 0 0 1 5 6.708V2.277a3 3 0 0 1-.354-.298C4.342 1.674 4 1.179 4 .5a.5.5 0 0 1 .146-.354m1.58 1.408-.002-.001zm-.002-.001.002.001A.5.5 0 0 1 6 2v5a.5.5 0 0 1-.276.447h-.002l-.012.007-.054.03a5 5 0 0 0-.827.58c-.318.278-.585.596-.725.936h7.792c-.14-.34-.407-.658-.725-.936a5 5 0 0 0-.881-.61l-.012-.006h-.002A.5.5 0 0 1 10 7V2a.5.5 0 0 1 .295-.458 1.8 1.8 0 0 0 .351-.271c.08-.08.155-.17.214-.271H5.14q.091.15.214.271a1.8 1.8 0 0 0 .37.282\" />\n      </svg>\n    );\n  },\n);\n\nPin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pin;\n"
  },
  {
    "path": "src/icons/pinterest.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pinterest = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pinterest', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 0 0-2.915 15.452c-.07-.633-.134-1.606.027-2.297.146-.625.938-3.977.938-3.977s-.239-.479-.239-1.187c0-1.113.645-1.943 1.448-1.943.682 0 1.012.512 1.012 1.127 0 .686-.437 1.712-.663 2.663-.188.796.4 1.446 1.185 1.446 1.422 0 2.515-1.5 2.515-3.664 0-1.915-1.377-3.254-3.342-3.254-2.276 0-3.612 1.707-3.612 3.471 0 .688.265 1.425.595 1.826a.24.24 0 0 1 .056.23c-.061.252-.196.796-.222.907-.035.146-.116.177-.268.107-1-.465-1.624-1.926-1.624-3.1 0-2.523 1.834-4.84 5.286-4.84 2.775 0 4.932 1.977 4.932 4.62 0 2.757-1.739 4.976-4.151 4.976-.811 0-1.573-.421-1.834-.919l-.498 1.902c-.181.695-.669 1.566-.995 2.097A8 8 0 1 0 8 0\" />\n      </svg>\n    );\n  },\n);\n\nPinterest.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pinterest;\n"
  },
  {
    "path": "src/icons/pip-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PipFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pip-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2zm7 6h5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nPipFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PipFill;\n"
  },
  {
    "path": "src/icons/pip.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Pip = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-pip', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3.5A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5zM1.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M8 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nPip.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Pip;\n"
  },
  {
    "path": "src/icons/play-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlayBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m6.79-6.907A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814z\" />\n      </svg>\n    );\n  },\n);\n\nPlayBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlayBtnFill;\n"
  },
  {
    "path": "src/icons/play-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlayBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play-btn', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nPlayBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlayBtn;\n"
  },
  {
    "path": "src/icons/play-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlayCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814z\" />\n      </svg>\n    );\n  },\n);\n\nPlayCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlayCircleFill;\n"
  },
  {
    "path": "src/icons/play-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlayCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M6.271 5.055a.5.5 0 0 1 .52.038l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445\" />\n      </svg>\n    );\n  },\n);\n\nPlayCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlayCircle;\n"
  },
  {
    "path": "src/icons/play-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlayFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393\" />\n      </svg>\n    );\n  },\n);\n\nPlayFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlayFill;\n"
  },
  {
    "path": "src/icons/play.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Play = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-play', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.804 8 5 4.633v6.734zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C4.713 12.69 4 12.345 4 11.692V4.308c0-.653.713-.998 1.233-.696z\" />\n      </svg>\n    );\n  },\n);\n\nPlay.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Play;\n"
  },
  {
    "path": "src/icons/playstation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Playstation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-playstation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.858 11.451c-.313.395-1.079.676-1.079.676l-5.696 2.046v-1.509l4.192-1.493c.476-.17.549-.412.162-.538-.386-.127-1.085-.09-1.56.08l-2.794.984v-1.566l.161-.054s.807-.286 1.942-.412c1.135-.125 2.525.017 3.616.43 1.23.39 1.368.962 1.056 1.356M9.625 8.883v-3.86c0-.453-.083-.87-.508-.988-.326-.105-.528.198-.528.65v9.664l-2.606-.827V2c1.108.206 2.722.692 3.59.985 2.207.757 2.955 1.7 2.955 3.825 0 2.071-1.278 2.856-2.903 2.072Zm-8.424 3.625C-.061 12.15-.271 11.41.304 10.984c.532-.394 1.436-.69 1.436-.69l3.737-1.33v1.515l-2.69.963c-.474.17-.547.411-.161.538.386.126 1.085.09 1.56-.08l1.29-.469v1.356l-.257.043a8.45 8.45 0 0 1-4.018-.323Z\" />\n      </svg>\n    );\n  },\n);\n\nPlaystation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Playstation;\n"
  },
  {
    "path": "src/icons/plug-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlugFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plug-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 0a.5.5 0 0 1 .5.5V3h3V.5a.5.5 0 0 1 1 0V3h1a.5.5 0 0 1 .5.5v3A3.5 3.5 0 0 1 8.5 10c-.002.434-.01.845-.04 1.22-.041.514-.126 1.003-.317 1.424a2.08 2.08 0 0 1-.97 1.028C6.725 13.9 6.169 14 5.5 14c-.998 0-1.61.33-1.974.718A1.92 1.92 0 0 0 3 16H2c0-.616.232-1.367.797-1.968C3.374 13.42 4.261 13 5.5 13c.581 0 .962-.088 1.218-.219.241-.123.4-.3.514-.55.121-.266.193-.621.23-1.09.027-.34.035-.718.037-1.141A3.5 3.5 0 0 1 4 6.5v-3a.5.5 0 0 1 .5-.5h1V.5A.5.5 0 0 1 6 0\" />\n      </svg>\n    );\n  },\n);\n\nPlugFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlugFill;\n"
  },
  {
    "path": "src/icons/plug.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Plug = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plug', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 0a.5.5 0 0 1 .5.5V3h3V.5a.5.5 0 0 1 1 0V3h1a.5.5 0 0 1 .5.5v3A3.5 3.5 0 0 1 8.5 10c-.002.434-.01.845-.04 1.22-.041.514-.126 1.003-.317 1.424a2.08 2.08 0 0 1-.97 1.028C6.725 13.9 6.169 14 5.5 14c-.998 0-1.61.33-1.974.718A1.92 1.92 0 0 0 3 16H2c0-.616.232-1.367.797-1.968C3.374 13.42 4.261 13 5.5 13c.581 0 .962-.088 1.218-.219.241-.123.4-.3.514-.55.121-.266.193-.621.23-1.09.027-.34.035-.718.037-1.141A3.5 3.5 0 0 1 4 6.5v-3a.5.5 0 0 1 .5-.5h1V.5A.5.5 0 0 1 6 0M5 4v2.5A2.5 2.5 0 0 0 7.5 9h1A2.5 2.5 0 0 0 11 6.5V4z\" />\n      </svg>\n    );\n  },\n);\n\nPlug.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Plug;\n"
  },
  {
    "path": "src/icons/plugin.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Plugin = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plugin', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1 8a7 7 0 1 1 2.898 5.673c-.167-.121-.216-.406-.002-.62l1.8-1.8a3.5 3.5 0 0 0 4.572-.328l1.414-1.415a.5.5 0 0 0 0-.707l-.707-.707 1.559-1.563a.5.5 0 1 0-.708-.706l-1.559 1.562-1.414-1.414 1.56-1.562a.5.5 0 1 0-.707-.706l-1.56 1.56-.707-.706a.5.5 0 0 0-.707 0L5.318 5.975a3.5 3.5 0 0 0-.328 4.571l-1.8 1.8c-.58.58-.62 1.6.121 2.137A8 8 0 1 0 0 8a.5.5 0 0 0 1 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nPlugin.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Plugin;\n"
  },
  {
    "path": "src/icons/plus-circle-dotted.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusCircleDotted = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-circle-dotted', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0q-.264 0-.523.017l.064.998a7 7 0 0 1 .918 0l.064-.998A8 8 0 0 0 8 0M6.44.152q-.52.104-1.012.27l.321.948q.43-.147.884-.237L6.44.153zm4.132.271a8 8 0 0 0-1.011-.27l-.194.98q.453.09.884.237zm1.873.925a8 8 0 0 0-.906-.524l-.443.896q.413.205.793.459zM4.46.824q-.471.233-.905.524l.556.83a7 7 0 0 1 .793-.458zM2.725 1.985q-.394.346-.74.74l.752.66q.303-.345.648-.648zm11.29.74a8 8 0 0 0-.74-.74l-.66.752q.346.303.648.648zm1.161 1.735a8 8 0 0 0-.524-.905l-.83.556q.254.38.458.793l.896-.443zM1.348 3.555q-.292.433-.524.906l.896.443q.205-.413.459-.793zM.423 5.428a8 8 0 0 0-.27 1.011l.98.194q.09-.453.237-.884zM15.848 6.44a8 8 0 0 0-.27-1.012l-.948.321q.147.43.237.884zM.017 7.477a8 8 0 0 0 0 1.046l.998-.064a7 7 0 0 1 0-.918zM16 8a8 8 0 0 0-.017-.523l-.998.064a7 7 0 0 1 0 .918l.998.064A8 8 0 0 0 16 8M.152 9.56q.104.52.27 1.012l.948-.321a7 7 0 0 1-.237-.884l-.98.194zm15.425 1.012q.168-.493.27-1.011l-.98-.194q-.09.453-.237.884zM.824 11.54a8 8 0 0 0 .524.905l.83-.556a7 7 0 0 1-.458-.793zm13.828.905q.292-.434.524-.906l-.896-.443q-.205.413-.459.793zm-12.667.83q.346.394.74.74l.66-.752a7 7 0 0 1-.648-.648zm11.29.74q.394-.346.74-.74l-.752-.66q-.302.346-.648.648zm-1.735 1.161q.471-.233.905-.524l-.556-.83a7 7 0 0 1-.793.458zm-7.985-.524q.434.292.906.524l.443-.896a7 7 0 0 1-.793-.459zm1.873.925q.493.168 1.011.27l.194-.98a7 7 0 0 1-.884-.237zm4.132.271a8 8 0 0 0 1.012-.27l-.321-.948a7 7 0 0 1-.884.237l.194.98zm-2.083.135a8 8 0 0 0 1.046 0l-.064-.998a7 7 0 0 1-.918 0zM8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3z\" />\n      </svg>\n    );\n  },\n);\n\nPlusCircleDotted.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusCircleDotted;\n"
  },
  {
    "path": "src/icons/plus-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3z\" />\n      </svg>\n    );\n  },\n);\n\nPlusCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusCircleFill;\n"
  },
  {
    "path": "src/icons/plus-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4\" />\n      </svg>\n    );\n  },\n);\n\nPlusCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusCircle;\n"
  },
  {
    "path": "src/icons/plus-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2\"\n        />\n      </svg>\n    );\n  },\n);\n\nPlusLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusLg;\n"
  },
  {
    "path": "src/icons/plus-slash-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusSlashMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-slash-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m1.854 14.854 13-13a.5.5 0 0 0-.708-.708l-13 13a.5.5 0 0 0 .708.708M4 1a.5.5 0 0 1 .5.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2A.5.5 0 0 1 4 1m5 11a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5A.5.5 0 0 1 9 12\" />\n      </svg>\n    );\n  },\n);\n\nPlusSlashMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusSlashMinus;\n"
  },
  {
    "path": "src/icons/plus-square-dotted.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusSquareDotted = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-square-dotted', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 0q-.25 0-.487.048l.194.98A1.5 1.5 0 0 1 2.5 1h.458V0zm2.292 0h-.917v1h.917zm1.833 0h-.917v1h.917zm1.833 0h-.916v1h.916zm1.834 0h-.917v1h.917zm1.833 0h-.917v1h.917zM13.5 0h-.458v1h.458q.151 0 .293.029l.194-.981A2.5 2.5 0 0 0 13.5 0m2.079 1.11a2.5 2.5 0 0 0-.69-.689l-.556.831q.248.167.415.415l.83-.556zM1.11.421a2.5 2.5 0 0 0-.689.69l.831.556c.11-.164.251-.305.415-.415zM16 2.5q0-.25-.048-.487l-.98.194q.027.141.028.293v.458h1zM.048 2.013A2.5 2.5 0 0 0 0 2.5v.458h1V2.5q0-.151.029-.293zM0 3.875v.917h1v-.917zm16 .917v-.917h-1v.917zM0 5.708v.917h1v-.917zm16 .917v-.917h-1v.917zM0 7.542v.916h1v-.916zm15 .916h1v-.916h-1zM0 9.375v.917h1v-.917zm16 .917v-.917h-1v.917zm-16 .916v.917h1v-.917zm16 .917v-.917h-1v.917zm-16 .917v.458q0 .25.048.487l.98-.194A1.5 1.5 0 0 1 1 13.5v-.458zm16 .458v-.458h-1v.458q0 .151-.029.293l.981.194Q16 13.75 16 13.5M.421 14.89c.183.272.417.506.69.689l.556-.831a1.5 1.5 0 0 1-.415-.415zm14.469.689c.272-.183.506-.417.689-.69l-.831-.556c-.11.164-.251.305-.415.415l.556.83zm-12.877.373Q2.25 16 2.5 16h.458v-1H2.5q-.151 0-.293-.029zM13.5 16q.25 0 .487-.048l-.194-.98A1.5 1.5 0 0 1 13.5 15h-.458v1zm-9.625 0h.917v-1h-.917zm1.833 0h.917v-1h-.917zm1.834-1v1h.916v-1zm1.833 1h.917v-1h-.917zm1.833 0h.917v-1h-.917zM8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3z\" />\n      </svg>\n    );\n  },\n);\n\nPlusSquareDotted.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusSquareDotted;\n"
  },
  {
    "path": "src/icons/plus-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nPlusSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusSquareFill;\n"
  },
  {
    "path": "src/icons/plus-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PlusSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4\" />\n      </svg>\n    );\n  },\n);\n\nPlusSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PlusSquare;\n"
  },
  {
    "path": "src/icons/plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Plus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4\" />\n      </svg>\n    );\n  },\n);\n\nPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Plus;\n"
  },
  {
    "path": "src/icons/postage-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostageFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postage-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M3.5 1a1 1 0 0 0 1-1h1a1 1 0 0 0 2 0h1a1 1 0 0 0 2 0h1a1 1 0 1 0 2 0H15v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1h-1.5a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0H1v-1a1 1 0 1 0 0-2v-1a1 1 0 1 0 0-2V9a1 1 0 1 0 0-2V6a1 1 0 0 0 0-2V3a1 1 0 0 0 0-2V0h1.5a1 1 0 0 0 1 1M3 3v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nPostageFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostageFill;\n"
  },
  {
    "path": "src/icons/postage-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostageHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postage-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5zM8 11C2.175 7.236 6.336 4.31 8 5.982 9.664 4.309 13.825 7.236 8 11\" />\n        <path d=\"M4.5 0a1 1 0 0 1-2 0H1v1a1 1 0 0 1 0 2v1a1 1 0 0 1 0 2v1a1 1 0 0 1 0 2v1a1 1 0 1 1 0 2v1a1 1 0 1 1 0 2v1h1.5a1 1 0 1 1 2 0h1a1 1 0 1 1 2 0h1a1 1 0 1 1 2 0h1a1 1 0 1 1 2 0H15v-1a1 1 0 1 1 0-2v-1a1 1 0 1 1 0-2V9a1 1 0 1 1 0-2V6a1 1 0 1 1 0-2V3a1 1 0 1 1 0-2V0h-1.5a1 1 0 1 1-2 0h-1a1 1 0 1 1-2 0h-1a1 1 0 0 1-2 0zM4 14a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nPostageHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostageHeartFill;\n"
  },
  {
    "path": "src/icons/postage-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostageHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postage-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 1a1 1 0 0 0 1-1h1a1 1 0 0 0 2 0h1a1 1 0 0 0 2 0h1a1 1 0 1 0 2 0H15v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1h-1.5a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0H1v-1a1 1 0 1 0 0-2v-1a1 1 0 1 0 0-2V9a1 1 0 1 0 0-2V6a1 1 0 0 0 0-2V3a1 1 0 0 0 0-2V0h1.5a1 1 0 0 0 1 1M3 3v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1\" />\n        <path d=\"M8 11C2.175 7.236 6.336 4.31 8 5.982 9.664 4.309 13.825 7.236 8 11\" />\n      </svg>\n    );\n  },\n);\n\nPostageHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostageHeart;\n"
  },
  {
    "path": "src/icons/postage.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Postage = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postage', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.75 3a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h6.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75zM11 12H5V4h6z\" />\n        <path d=\"M3.5 1a1 1 0 0 0 1-1h1a1 1 0 0 0 2 0h1a1 1 0 0 0 2 0h1a1 1 0 1 0 2 0H15v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1a1 1 0 1 0 0 2v1h-1.5a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0h-1a1 1 0 1 0-2 0H1v-1a1 1 0 1 0 0-2v-1a1 1 0 1 0 0-2V9a1 1 0 1 0 0-2V6a1 1 0 0 0 0-2V3a1 1 0 0 0 0-2V0h1.5a1 1 0 0 0 1 1M3 3v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nPostage.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Postage;\n"
  },
  {
    "path": "src/icons/postcard-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostcardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postcard-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 8h2V6h-2z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm8.5.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zM2 5.5a.5.5 0 0 0 .5.5H6a.5.5 0 0 0 0-1H2.5a.5.5 0 0 0-.5.5M2.5 7a.5.5 0 0 0 0 1H6a.5.5 0 0 0 0-1zM2 9.5a.5.5 0 0 0 .5.5H6a.5.5 0 0 0 0-1H2.5a.5.5 0 0 0-.5.5m8-4v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nPostcardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostcardFill;\n"
  },
  {
    "path": "src/icons/postcard-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostcardHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postcard-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm6 2.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0m3.5.878c1.482-1.42 4.795 1.392 0 4.622-4.795-3.23-1.482-6.043 0-4.622M2 5.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nPostcardHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostcardHeartFill;\n"
  },
  {
    "path": "src/icons/postcard-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PostcardHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postcard-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zm3.5.878c1.482-1.42 4.795 1.392 0 4.622-4.795-3.23-1.482-6.043 0-4.622M2.5 5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPostcardHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PostcardHeart;\n"
  },
  {
    "path": "src/icons/postcard.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Postcard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-postcard', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zM1 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm7.5.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zM2 5.5a.5.5 0 0 1 .5-.5H6a.5.5 0 0 1 0 1H2.5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5H6a.5.5 0 0 1 0 1H2.5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5H6a.5.5 0 0 1 0 1H2.5a.5.5 0 0 1-.5-.5M10.5 5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zM13 8h-2V6h2z\"\n        />\n      </svg>\n    );\n  },\n);\n\nPostcard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Postcard;\n"
  },
  {
    "path": "src/icons/power.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Power = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-power', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.5 1v7h1V1z\" />\n        <path d=\"M3 8.812a5 5 0 0 1 2.578-4.375l-.485-.874A6 6 0 1 0 11 3.616l-.501.865A5 5 0 1 1 3 8.812\" />\n      </svg>\n    );\n  },\n);\n\nPower.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Power;\n"
  },
  {
    "path": "src/icons/prescription.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Prescription = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-prescription', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 6a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0V9h.293l2 2-1.147 1.146a.5.5 0 0 0 .708.708L9 11.707l1.146 1.147a.5.5 0 0 0 .708-.708L9.707 11l1.147-1.146a.5.5 0 0 0-.708-.708L9 10.293 7.695 8.987A1.5 1.5 0 0 0 7.5 6zM6 7h1.5a.5.5 0 0 1 0 1H6z\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v10.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 14.5V4a1 1 0 0 1-1-1zm2 3v10.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V4zM3 3h10V1H3z\" />\n      </svg>\n    );\n  },\n);\n\nPrescription.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Prescription;\n"
  },
  {
    "path": "src/icons/prescription2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Prescription2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-prescription2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 6h2v2h2v2H9v2H7v-2H5V8h2z\" />\n        <path d=\"M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v10.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 14.5V4a1 1 0 0 1-1-1zm2 3v10.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V4zM3 3h10V1H3z\" />\n      </svg>\n    );\n  },\n);\n\nPrescription2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Prescription2;\n"
  },
  {
    "path": "src/icons/printer-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PrinterFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-printer-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 1a2 2 0 0 0-2 2v1h10V3a2 2 0 0 0-2-2zm6 8H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1\" />\n        <path d=\"M0 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-1v-2a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2H2a2 2 0 0 1-2-2zm2.5 1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n      </svg>\n    );\n  },\n);\n\nPrinterFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PrinterFill;\n"
  },
  {
    "path": "src/icons/printer.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Printer = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-printer', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M5 1a2 2 0 0 0-2 2v2H2a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1v1a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V3a2 2 0 0 0-2-2zM4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2H4zm1 5a2 2 0 0 0-2 2v1H2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v-1a2 2 0 0 0-2-2zm7 2v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1\" />\n      </svg>\n    );\n  },\n);\n\nPrinter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Printer;\n"
  },
  {
    "path": "src/icons/projector-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ProjectorFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-projector-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2 1 1 0 0 0 1 1h1a1 1 0 0 0 1-1h6a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1 2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm.5 2h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1M14 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-12 1a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nProjectorFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ProjectorFill;\n"
  },
  {
    "path": "src/icons/projector.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Projector = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-projector', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M2.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z\" />\n        <path d=\"M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1H5a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nProjector.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Projector;\n"
  },
  {
    "path": "src/icons/puzzle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst PuzzleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-puzzle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.112 3.645A1.5 1.5 0 0 1 4.605 2H7a.5.5 0 0 1 .5.5v.382c0 .696-.497 1.182-.872 1.469a.5.5 0 0 0-.115.118l-.012.025L6.5 4.5v.003l.003.01q.005.015.036.053a.9.9 0 0 0 .27.194C7.09 4.9 7.51 5 8 5c.492 0 .912-.1 1.19-.24a.9.9 0 0 0 .271-.194.2.2 0 0 0 .036-.054l.003-.01v-.008l-.012-.025a.5.5 0 0 0-.115-.118c-.375-.287-.872-.773-.872-1.469V2.5A.5.5 0 0 1 9 2h2.395a1.5 1.5 0 0 1 1.493 1.645L12.645 6.5h.237c.195 0 .42-.147.675-.48.21-.274.528-.52.943-.52.568 0 .947.447 1.154.862C15.877 6.807 16 7.387 16 8s-.123 1.193-.346 1.638c-.207.415-.586.862-1.154.862-.415 0-.733-.246-.943-.52-.255-.333-.48-.48-.675-.48h-.237l.243 2.855A1.5 1.5 0 0 1 11.395 14H9a.5.5 0 0 1-.5-.5v-.382c0-.696.497-1.182.872-1.469a.5.5 0 0 0 .115-.118l.012-.025.001-.006v-.003l-.003-.01a.2.2 0 0 0-.036-.053.9.9 0 0 0-.27-.194C8.91 11.1 8.49 11 8 11s-.912.1-1.19.24a.9.9 0 0 0-.271.194.2.2 0 0 0-.036.054l-.003.01v.002l.001.006.012.025c.016.027.05.068.115.118.375.287.872.773.872 1.469v.382a.5.5 0 0 1-.5.5H4.605a1.5 1.5 0 0 1-1.493-1.645L3.356 9.5h-.238c-.195 0-.42.147-.675.48-.21.274-.528.52-.943.52-.568 0-.947-.447-1.154-.862C.123 9.193 0 8.613 0 8s.123-1.193.346-1.638C.553 5.947.932 5.5 1.5 5.5c.415 0 .733.246.943.52.255.333.48.48.675.48h.238z\" />\n      </svg>\n    );\n  },\n);\n\nPuzzleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default PuzzleFill;\n"
  },
  {
    "path": "src/icons/puzzle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Puzzle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-puzzle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.112 3.645A1.5 1.5 0 0 1 4.605 2H7a.5.5 0 0 1 .5.5v.382c0 .696-.497 1.182-.872 1.469a.5.5 0 0 0-.115.118l-.012.025L6.5 4.5v.003l.003.01q.005.015.036.053a.9.9 0 0 0 .27.194C7.09 4.9 7.51 5 8 5c.492 0 .912-.1 1.19-.24a.9.9 0 0 0 .271-.194.2.2 0 0 0 .039-.063v-.009l-.012-.025a.5.5 0 0 0-.115-.118c-.375-.287-.872-.773-.872-1.469V2.5A.5.5 0 0 1 9 2h2.395a1.5 1.5 0 0 1 1.493 1.645L12.645 6.5h.237c.195 0 .42-.147.675-.48.21-.274.528-.52.943-.52.568 0 .947.447 1.154.862C15.877 6.807 16 7.387 16 8s-.123 1.193-.346 1.638c-.207.415-.586.862-1.154.862-.415 0-.733-.246-.943-.52-.255-.333-.48-.48-.675-.48h-.237l.243 2.855A1.5 1.5 0 0 1 11.395 14H9a.5.5 0 0 1-.5-.5v-.382c0-.696.497-1.182.872-1.469a.5.5 0 0 0 .115-.118l.012-.025.001-.006v-.003a.2.2 0 0 0-.039-.064.9.9 0 0 0-.27-.193C8.91 11.1 8.49 11 8 11s-.912.1-1.19.24a.9.9 0 0 0-.271.194.2.2 0 0 0-.039.063v.003l.001.006.012.025c.016.027.05.068.115.118.375.287.872.773.872 1.469v.382a.5.5 0 0 1-.5.5H4.605a1.5 1.5 0 0 1-1.493-1.645L3.356 9.5h-.238c-.195 0-.42.147-.675.48-.21.274-.528.52-.943.52-.568 0-.947-.447-1.154-.862C.123 9.193 0 8.613 0 8s.123-1.193.346-1.638C.553 5.947.932 5.5 1.5 5.5c.415 0 .733.246.943.52.255.333.48.48.675.48h.238zM4.605 3a.5.5 0 0 0-.498.55l.001.007.29 3.4A.5.5 0 0 1 3.9 7.5h-.782c-.696 0-1.182-.497-1.469-.872a.5.5 0 0 0-.118-.115l-.025-.012L1.5 6.5h-.003a.2.2 0 0 0-.064.039.9.9 0 0 0-.193.27C1.1 7.09 1 7.51 1 8s.1.912.24 1.19c.07.14.14.225.194.271a.2.2 0 0 0 .063.039H1.5l.006-.001.025-.012a.5.5 0 0 0 .118-.115c.287-.375.773-.872 1.469-.872H3.9a.5.5 0 0 1 .498.542l-.29 3.408a.5.5 0 0 0 .497.55h1.878c-.048-.166-.195-.352-.463-.557-.274-.21-.52-.528-.52-.943 0-.568.447-.947.862-1.154C6.807 10.123 7.387 10 8 10s1.193.123 1.638.346c.415.207.862.586.862 1.154 0 .415-.246.733-.52.943-.268.205-.415.39-.463.557h1.878a.5.5 0 0 0 .498-.55l-.001-.007-.29-3.4A.5.5 0 0 1 12.1 8.5h.782c.696 0 1.182.497 1.469.872.05.065.091.099.118.115l.025.012.006.001h.003a.2.2 0 0 0 .064-.039.9.9 0 0 0 .193-.27c.14-.28.24-.7.24-1.191s-.1-.912-.24-1.19a.9.9 0 0 0-.194-.271.2.2 0 0 0-.063-.039H14.5l-.006.001-.025.012a.5.5 0 0 0-.118.115c-.287.375-.773.872-1.469.872H12.1a.5.5 0 0 1-.498-.543l.29-3.407a.5.5 0 0 0-.497-.55H9.517c.048.166.195.352.463.557.274.21.52.528.52.943 0 .568-.447.947-.862 1.154C9.193 5.877 8.613 6 8 6s-1.193-.123-1.638-.346C5.947 5.447 5.5 5.068 5.5 4.5c0-.415.246-.733.52-.943.268-.205.415-.39.463-.557z\" />\n      </svg>\n    );\n  },\n);\n\nPuzzle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Puzzle;\n"
  },
  {
    "path": "src/icons/qr-code-scan.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QrCodeScan = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-qr-code-scan', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 .5A.5.5 0 0 1 .5 0h3a.5.5 0 0 1 0 1H1v2.5a.5.5 0 0 1-1 0zm12 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V1h-2.5a.5.5 0 0 1-.5-.5M.5 12a.5.5 0 0 1 .5.5V15h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H15v-2.5a.5.5 0 0 1 .5-.5M4 4h1v1H4z\" />\n        <path d=\"M7 2H2v5h5zM3 3h3v3H3zm2 8H4v1h1z\" />\n        <path d=\"M7 9H2v5h5zm-4 1h3v3H3zm8-6h1v1h-1z\" />\n        <path d=\"M9 2h5v5H9zm1 1v3h3V3zM8 8v2h1v1H8v1h2v-2h1v2h1v-1h2v-1h-3V8zm2 2H9V9h1zm4 2h-1v1h-2v1h3zm-4 2v-1H8v1z\" />\n        <path d=\"M12 9h2V8h-2z\" />\n      </svg>\n    );\n  },\n);\n\nQrCodeScan.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QrCodeScan;\n"
  },
  {
    "path": "src/icons/qr-code.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QrCode = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-qr-code', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2h2v2H2z\" />\n        <path d=\"M6 0v6H0V0zM5 1H1v4h4zM4 12H2v2h2z\" />\n        <path d=\"M6 10v6H0v-6zm-5 1v4h4v-4zm11-9h2v2h-2z\" />\n        <path d=\"M10 0v6h6V0zm5 1v4h-4V1zM8 1V0h1v2H8v2H7V1zm0 5V4h1v2zM6 8V7h1V6h1v2h1V7h5v1h-4v1H7V8zm0 0v1H2V8H1v1H0V7h3v1zm10 1h-1V7h1zm-1 0h-1v2h2v-1h-1zm-4 0h2v1h-1v1h-1zm2 3v-1h-1v1h-1v1H9v1h3v-2zm0 0h3v1h-2v1h-1zm-4-1v1h1v-2H7v1z\" />\n        <path d=\"M7 12h1v3h4v1H7zm9 2v2h-3v-1h2v-1z\" />\n      </svg>\n    );\n  },\n);\n\nQrCode.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QrCode;\n"
  },
  {
    "path": "src/icons/question-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.496 6.033h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286a.237.237 0 0 0 .241.247m2.325 6.443c.61 0 1.029-.394 1.029-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94 0 .533.425.927 1.01.927z\" />\n      </svg>\n    );\n  },\n);\n\nQuestionCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionCircleFill;\n"
  },
  {
    "path": "src/icons/question-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94\" />\n      </svg>\n    );\n  },\n);\n\nQuestionCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionCircle;\n"
  },
  {
    "path": "src/icons/question-diamond-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionDiamondFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-diamond-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM5.495 6.033a.237.237 0 0 1-.24-.247C5.35 4.091 6.737 3.5 8.005 3.5c1.396 0 2.672.73 2.672 2.24 0 1.08-.635 1.594-1.244 2.057-.737.559-1.01.768-1.01 1.486v.105a.25.25 0 0 1-.25.25h-.81a.25.25 0 0 1-.25-.246l-.004-.217c-.038-.927.495-1.498 1.168-1.987.59-.444.965-.736.965-1.371 0-.825-.628-1.168-1.314-1.168-.803 0-1.253.478-1.342 1.134-.018.137-.128.25-.266.25zm2.325 6.443c-.584 0-1.009-.394-1.009-.927 0-.552.425-.94 1.01-.94.609 0 1.028.388 1.028.94 0 .533-.42.927-1.029.927\" />\n      </svg>\n    );\n  },\n);\n\nQuestionDiamondFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionDiamondFill;\n"
  },
  {
    "path": "src/icons/question-diamond.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionDiamond = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-diamond', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134z\" />\n        <path d=\"M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94\" />\n      </svg>\n    );\n  },\n);\n\nQuestionDiamond.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionDiamond;\n"
  },
  {
    "path": "src/icons/question-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-lg', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.475 5.458c-.284 0-.514-.237-.47-.517C4.28 3.24 5.576 2 7.825 2c2.25 0 3.767 1.36 3.767 3.215 0 1.344-.665 2.288-1.79 2.973-1.1.659-1.414 1.118-1.414 2.01v.03a.5.5 0 0 1-.5.5h-.77a.5.5 0 0 1-.5-.495l-.003-.2c-.043-1.221.477-2.001 1.645-2.712 1.03-.632 1.397-1.135 1.397-2.028 0-.979-.758-1.698-1.926-1.698-1.009 0-1.71.529-1.938 1.402-.066.254-.278.461-.54.461h-.777ZM7.496 14c.622 0 1.095-.474 1.095-1.09 0-.618-.473-1.092-1.095-1.092-.606 0-1.087.474-1.087 1.091S6.89 14 7.496 14\"\n        />\n      </svg>\n    );\n  },\n);\n\nQuestionLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionLg;\n"
  },
  {
    "path": "src/icons/question-octagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionOctagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-octagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.46.146A.5.5 0 0 0 11.107 0H4.893a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353zM5.496 6.033a.237.237 0 0 1-.24-.247C5.35 4.091 6.737 3.5 8.005 3.5c1.396 0 2.672.73 2.672 2.24 0 1.08-.635 1.594-1.244 2.057-.737.559-1.01.768-1.01 1.486v.105a.25.25 0 0 1-.25.25h-.81a.25.25 0 0 1-.25-.246l-.004-.217c-.038-.927.495-1.498 1.168-1.987.59-.444.965-.736.965-1.371 0-.825-.628-1.168-1.314-1.168-.803 0-1.253.478-1.342 1.134-.018.137-.128.25-.266.25h-.825zm2.325 6.443c-.584 0-1.009-.394-1.009-.927 0-.552.425-.94 1.01-.94.609 0 1.028.388 1.028.94 0 .533-.42.927-1.029.927\" />\n      </svg>\n    );\n  },\n);\n\nQuestionOctagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionOctagonFill;\n"
  },
  {
    "path": "src/icons/question-octagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionOctagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-octagon', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM5.1 1 1 5.1v5.8L5.1 15h5.8l4.1-4.1V5.1L10.9 1z\" />\n        <path d=\"M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94\" />\n      </svg>\n    );\n  },\n);\n\nQuestionOctagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionOctagon;\n"
  },
  {
    "path": "src/icons/question-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.496 6.033a.237.237 0 0 1-.24-.247C5.35 4.091 6.737 3.5 8.005 3.5c1.396 0 2.672.73 2.672 2.24 0 1.08-.635 1.594-1.244 2.057-.737.559-1.01.768-1.01 1.486v.105a.25.25 0 0 1-.25.25h-.81a.25.25 0 0 1-.25-.246l-.004-.217c-.038-.927.495-1.498 1.168-1.987.59-.444.965-.736.965-1.371 0-.825-.628-1.168-1.314-1.168-.803 0-1.253.478-1.342 1.134-.018.137-.128.25-.266.25h-.825zm2.325 6.443c-.584 0-1.009-.394-1.009-.927 0-.552.425-.94 1.01-.94.609 0 1.028.388 1.028.94 0 .533-.42.927-1.029.927\" />\n      </svg>\n    );\n  },\n);\n\nQuestionSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionSquareFill;\n"
  },
  {
    "path": "src/icons/question-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst QuestionSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94\" />\n      </svg>\n    );\n  },\n);\n\nQuestionSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default QuestionSquare;\n"
  },
  {
    "path": "src/icons/question.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Question = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-question', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94\" />\n      </svg>\n    );\n  },\n);\n\nQuestion.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Question;\n"
  },
  {
    "path": "src/icons/quora.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Quora = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-quora', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.73 12.476c-.554-1.091-1.204-2.193-2.473-2.193-.242 0-.484.04-.707.142l-.43-.863c.525-.45 1.373-.808 2.464-.808 1.697 0 2.568.818 3.26 1.86.41-.89.605-2.093.605-3.584 0-3.724-1.165-5.636-3.885-5.636-2.68 0-3.839 1.912-3.839 5.636 0 3.704 1.159 5.596 3.84 5.596.425 0 .811-.046 1.166-.15Zm.665 1.3a7 7 0 0 1-1.83.244C3.994 14.02.5 11.172.5 7.03.5 2.849 3.995 0 7.564 0c3.63 0 7.09 2.828 7.09 7.03 0 2.337-1.09 4.236-2.675 5.464.512.767 1.04 1.277 1.773 1.277.802 0 1.125-.62 1.179-1.105h1.043c.061.647-.262 3.334-3.178 3.334-1.767 0-2.7-1.024-3.4-2.224Z\" />\n      </svg>\n    );\n  },\n);\n\nQuora.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Quora;\n"
  },
  {
    "path": "src/icons/quote.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Quote = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-quote', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nQuote.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Quote;\n"
  },
  {
    "path": "src/icons/r-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-r-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.5 4.002V12h1.335V8.924H8.52L9.98 12h1.52L9.856 8.701c.828-.299 1.495-1.101 1.495-2.238 0-1.488-1.03-2.461-2.74-2.461zm1.335 1.09v2.777h1.549c.995 0 1.573-.463 1.573-1.36 0-.913-.596-1.417-1.537-1.417z\" />\n      </svg>\n    );\n  },\n);\n\nRCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RCircleFill;\n"
  },
  {
    "path": "src/icons/r-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-r-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.5 4.002h3.11c1.71 0 2.741.973 2.741 2.46 0 1.138-.667 1.94-1.495 2.24L11.5 12H9.98L8.52 8.924H6.836V12H5.5zm1.335 1.09v2.777h1.549c.995 0 1.573-.463 1.573-1.36 0-.913-.596-1.417-1.537-1.417z\" />\n      </svg>\n    );\n  },\n);\n\nRCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RCircle;\n"
  },
  {
    "path": "src/icons/r-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-r-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.835 5.092v2.777h1.549c.995 0 1.573-.463 1.573-1.36 0-.913-.596-1.417-1.537-1.417z\" />\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.5 4.002h3.11c1.71 0 2.741.973 2.741 2.46 0 1.138-.667 1.94-1.495 2.24L11.5 12H9.98L8.52 8.924H6.836V12H5.5z\" />\n      </svg>\n    );\n  },\n);\n\nRSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RSquareFill;\n"
  },
  {
    "path": "src/icons/r-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-r-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 4.002h3.11c1.71 0 2.741.973 2.741 2.46 0 1.138-.667 1.94-1.495 2.24L11.5 12H9.98L8.52 8.924H6.836V12H5.5zm1.335 1.09v2.777h1.549c.995 0 1.573-.463 1.573-1.36 0-.913-.596-1.417-1.537-1.417z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nRSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RSquare;\n"
  },
  {
    "path": "src/icons/radar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Radar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-radar', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.634 1.135A7 7 0 0 1 15 8a.5.5 0 0 1-1 0 6 6 0 1 0-6.5 5.98v-1.005A5 5 0 1 1 13 8a.5.5 0 0 1-1 0 4 4 0 1 0-4.5 3.969v-1.011A2.999 2.999 0 1 1 11 8a.5.5 0 0 1-1 0 2 2 0 1 0-2.5 1.936v-1.07a1 1 0 1 1 1 0V15.5a.5.5 0 0 1-1 0v-.518a7 7 0 0 1-.866-13.847\" />\n      </svg>\n    );\n  },\n);\n\nRadar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Radar;\n"
  },
  {
    "path": "src/icons/radioactive.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Radioactive = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-radioactive', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8\" />\n        <path d=\"M9.653 5.496A3 3 0 0 0 8 5c-.61 0-1.179.183-1.653.496L4.694 2.992A5.97 5.97 0 0 1 8 2c1.222 0 2.358.365 3.306.992zm1.342 2.324a3 3 0 0 1-.884 2.312 3 3 0 0 1-.769.552l1.342 2.683c.57-.286 1.09-.66 1.538-1.103a6 6 0 0 0 1.767-4.624zm-5.679 5.548 1.342-2.684A3 3 0 0 1 5.005 7.82l-2.994-.18a6 6 0 0 0 3.306 5.728ZM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nRadioactive.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Radioactive;\n"
  },
  {
    "path": "src/icons/rainbow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Rainbow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rainbow', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.5a7 7 0 0 0-7 7 .5.5 0 0 1-1 0 8 8 0 1 1 16 0 .5.5 0 0 1-1 0 7 7 0 0 0-7-7m0 2a5 5 0 0 0-5 5 .5.5 0 0 1-1 0 6 6 0 1 1 12 0 .5.5 0 0 1-1 0 5 5 0 0 0-5-5m0 2a3 3 0 0 0-3 3 .5.5 0 0 1-1 0 4 4 0 1 1 8 0 .5.5 0 0 1-1 0 3 3 0 0 0-3-3m0 2a1 1 0 0 0-1 1 .5.5 0 0 1-1 0 2 2 0 1 1 4 0 .5.5 0 0 1-1 0 1 1 0 0 0-1-1\" />\n      </svg>\n    );\n  },\n);\n\nRainbow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Rainbow;\n"
  },
  {
    "path": "src/icons/receipt-cutoff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ReceiptCutoff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-receipt-cutoff', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5M11.5 4a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n        <path d=\"M2.354.646a.5.5 0 0 0-.801.13l-.5 1A.5.5 0 0 0 1 2v13H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1H15V2a.5.5 0 0 0-.053-.224l-.5-1a.5.5 0 0 0-.8-.13L13 1.293l-.646-.647a.5.5 0 0 0-.708 0L11 1.293l-.646-.647a.5.5 0 0 0-.708 0L9 1.293 8.354.646a.5.5 0 0 0-.708 0L7 1.293 6.354.646a.5.5 0 0 0-.708 0L5 1.293 4.354.646a.5.5 0 0 0-.708 0L3 1.293zm-.217 1.198.51.51a.5.5 0 0 0 .707 0L4 1.707l.646.647a.5.5 0 0 0 .708 0L6 1.707l.646.647a.5.5 0 0 0 .708 0L8 1.707l.646.647a.5.5 0 0 0 .708 0L10 1.707l.646.647a.5.5 0 0 0 .708 0L12 1.707l.646.647a.5.5 0 0 0 .708 0l.509-.51.137.274V15H2V2.118z\" />\n      </svg>\n    );\n  },\n);\n\nReceiptCutoff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ReceiptCutoff;\n"
  },
  {
    "path": "src/icons/receipt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Receipt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-receipt', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.92.506a.5.5 0 0 1 .434.14L3 1.293l.646-.647a.5.5 0 0 1 .708 0L5 1.293l.646-.647a.5.5 0 0 1 .708 0L7 1.293l.646-.647a.5.5 0 0 1 .708 0L9 1.293l.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .801.13l.5 1A.5.5 0 0 1 15 2v12a.5.5 0 0 1-.053.224l-.5 1a.5.5 0 0 1-.8.13L13 14.707l-.646.647a.5.5 0 0 1-.708 0L11 14.707l-.646.647a.5.5 0 0 1-.708 0L9 14.707l-.646.647a.5.5 0 0 1-.708 0L7 14.707l-.646.647a.5.5 0 0 1-.708 0L5 14.707l-.646.647a.5.5 0 0 1-.708 0L3 14.707l-.646.647a.5.5 0 0 1-.801-.13l-.5-1A.5.5 0 0 1 1 14V2a.5.5 0 0 1 .053-.224l.5-1a.5.5 0 0 1 .367-.27m.217 1.338L2 2.118v11.764l.137.274.51-.51a.5.5 0 0 1 .707 0l.646.647.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.509.509.137-.274V2.118l-.137-.274-.51.51a.5.5 0 0 1-.707 0L12 1.707l-.646.647a.5.5 0 0 1-.708 0L10 1.707l-.646.647a.5.5 0 0 1-.708 0L8 1.707l-.646.647a.5.5 0 0 1-.708 0L6 1.707l-.646.647a.5.5 0 0 1-.708 0L4 1.707l-.646.647a.5.5 0 0 1-.708 0z\" />\n        <path d=\"M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m8-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nReceipt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Receipt;\n"
  },
  {
    "path": "src/icons/reception-0.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reception0 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reception-0', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 13.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nReception0.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reception0;\n"
  },
  {
    "path": "src/icons/reception-1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reception1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reception-1', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 11.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nReception1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reception1;\n"
  },
  {
    "path": "src/icons/reception-2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reception2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reception-2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 11.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4 5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m4 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nReception2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reception2;\n"
  },
  {
    "path": "src/icons/reception-3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reception3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reception-3', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 11.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4 8a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nReception3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reception3;\n"
  },
  {
    "path": "src/icons/reception-4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reception4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reception-4', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 11.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nReception4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reception4;\n"
  },
  {
    "path": "src/icons/record-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RecordBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m8-1a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nRecordBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RecordBtnFill;\n"
  },
  {
    "path": "src/icons/record-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RecordBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record-btn', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nRecordBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RecordBtn;\n"
  },
  {
    "path": "src/icons/record-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RecordCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6\" />\n      </svg>\n    );\n  },\n);\n\nRecordCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RecordCircleFill;\n"
  },
  {
    "path": "src/icons/record-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RecordCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" />\n      </svg>\n    );\n  },\n);\n\nRecordCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RecordCircle;\n"
  },
  {
    "path": "src/icons/record-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RecordFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path fillRule=\"evenodd\" d=\"M8 13A5 5 0 1 0 8 3a5 5 0 0 0 0 10\" />\n      </svg>\n    );\n  },\n);\n\nRecordFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RecordFill;\n"
  },
  {
    "path": "src/icons/record.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Record = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8m0 1A5 5 0 1 0 8 3a5 5 0 0 0 0 10\" />\n      </svg>\n    );\n  },\n);\n\nRecord.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Record;\n"
  },
  {
    "path": "src/icons/record2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Record2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n        <path d=\"M8 13A5 5 0 1 0 8 3a5 5 0 0 0 0 10m0-2a3 3 0 1 1 0-6 3 3 0 0 1 0 6\" />\n      </svg>\n    );\n  },\n);\n\nRecord2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Record2Fill;\n"
  },
  {
    "path": "src/icons/record2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Record2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-record2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8m0 1A5 5 0 1 0 8 3a5 5 0 0 0 0 10\" />\n        <path d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" />\n      </svg>\n    );\n  },\n);\n\nRecord2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Record2;\n"
  },
  {
    "path": "src/icons/recycle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Recycle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-recycle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.302 1.256a1.5 1.5 0 0 0-2.604 0l-1.704 2.98a.5.5 0 0 0 .869.497l1.703-2.981a.5.5 0 0 1 .868 0l2.54 4.444-1.256-.337a.5.5 0 1 0-.26.966l2.415.647a.5.5 0 0 0 .613-.353l.647-2.415a.5.5 0 1 0-.966-.259l-.333 1.242zM2.973 7.773l-1.255.337a.5.5 0 1 1-.26-.966l2.416-.647a.5.5 0 0 1 .612.353l.647 2.415a.5.5 0 0 1-.966.259l-.333-1.242-2.545 4.454a.5.5 0 0 0 .434.748H5a.5.5 0 0 1 0 1H1.723A1.5 1.5 0 0 1 .421 12.24zm10.89 1.463a.5.5 0 1 0-.868.496l1.716 3.004a.5.5 0 0 1-.434.748h-5.57l.647-.646a.5.5 0 1 0-.708-.707l-1.5 1.5a.5.5 0 0 0 0 .707l1.5 1.5a.5.5 0 1 0 .708-.707l-.647-.647h5.57a1.5 1.5 0 0 0 1.302-2.244z\" />\n      </svg>\n    );\n  },\n);\n\nRecycle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Recycle;\n"
  },
  {
    "path": "src/icons/reddit.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reddit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reddit', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.167 8a.83.83 0 0 0-.83.83c0 .459.372.84.83.831a.831.831 0 0 0 0-1.661m1.843 3.647c.315 0 1.403-.038 1.976-.611a.23.23 0 0 0 0-.306.213.213 0 0 0-.306 0c-.353.363-1.126.487-1.67.487-.545 0-1.308-.124-1.671-.487a.213.213 0 0 0-.306 0 .213.213 0 0 0 0 .306c.564.563 1.652.61 1.977.61zm.992-2.807c0 .458.373.83.831.83s.83-.381.83-.83a.831.831 0 0 0-1.66 0z\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.828-1.165c-.315 0-.602.124-.812.325-.801-.573-1.9-.945-3.121-.993l.534-2.501 1.738.372a.83.83 0 1 0 .83-.869.83.83 0 0 0-.744.468l-1.938-.41a.2.2 0 0 0-.153.028.2.2 0 0 0-.086.134l-.592 2.788c-1.24.038-2.358.41-3.17.992-.21-.2-.496-.324-.81-.324a1.163 1.163 0 0 0-.478 2.224q-.03.17-.029.353c0 1.795 2.091 3.256 4.669 3.256s4.668-1.451 4.668-3.256c0-.114-.01-.238-.029-.353.401-.181.688-.592.688-1.069 0-.65-.525-1.165-1.165-1.165\" />\n      </svg>\n    );\n  },\n);\n\nReddit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reddit;\n"
  },
  {
    "path": "src/icons/regex.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Regex = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-regex', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 1 1 .707.707m9.9-.707a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.314.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707M6 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0m5-6.5a.5.5 0 0 0-1 0v2.117L8.257 5.57a.5.5 0 0 0-.514.858L9.528 7.5 7.743 8.571a.5.5 0 1 0 .514.858L10 8.383V10.5a.5.5 0 1 0 1 0V8.383l1.743 1.046a.5.5 0 0 0 .514-.858L11.472 7.5l1.785-1.071a.5.5 0 1 0-.514-.858L11 6.617z\"\n        />\n      </svg>\n    );\n  },\n);\n\nRegex.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Regex;\n"
  },
  {
    "path": "src/icons/repeat-1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Repeat1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-repeat-1', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 4v1.466a.25.25 0 0 0 .41.192l2.36-1.966a.25.25 0 0 0 0-.384l-2.36-1.966a.25.25 0 0 0-.41.192V3H5a5 5 0 0 0-4.48 7.223.5.5 0 0 0 .896-.446A4 4 0 0 1 5 4zm4.48 1.777a.5.5 0 0 0-.896.446A4 4 0 0 1 11 12H5.001v-1.466a.25.25 0 0 0-.41-.192l-2.36 1.966a.25.25 0 0 0 0 .384l2.36 1.966a.25.25 0 0 0 .41-.192V13h6a5 5 0 0 0 4.48-7.223Z\" />\n        <path d=\"M9 5.5a.5.5 0 0 0-.854-.354l-1.75 1.75a.5.5 0 1 0 .708.708L8 6.707V10.5a.5.5 0 0 0 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nRepeat1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Repeat1;\n"
  },
  {
    "path": "src/icons/repeat.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Repeat = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-repeat', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 5.466V4H5a4 4 0 0 0-3.584 5.777.5.5 0 1 1-.896.446A5 5 0 0 1 5 3h6V1.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192m3.81.086a.5.5 0 0 1 .67.225A5 5 0 0 1 11 13H5v1.466a.25.25 0 0 1-.41.192l-2.36-1.966a.25.25 0 0 1 0-.384l2.36-1.966a.25.25 0 0 1 .41.192V12h6a4 4 0 0 0 3.585-5.777.5.5 0 0 1 .225-.67Z\" />\n      </svg>\n    );\n  },\n);\n\nRepeat.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Repeat;\n"
  },
  {
    "path": "src/icons/reply-all-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ReplyAllFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reply-all-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.021 11.9 3.453 8.62a.72.72 0 0 1 0-1.238L8.021 4.1a.716.716 0 0 1 1.079.619V6c1.5 0 6 0 7 8-2.5-4.5-7-4-7-4v1.281c0 .56-.606.898-1.079.62z\" />\n        <path d=\"M5.232 4.293a.5.5 0 0 1-.106.7L1.114 7.945l-.042.028a.147.147 0 0 0 0 .252l.042.028 4.012 2.954a.5.5 0 1 1-.593.805L.539 9.073a1.147 1.147 0 0 1 0-1.946l3.994-2.94a.5.5 0 0 1 .699.106\" />\n      </svg>\n    );\n  },\n);\n\nReplyAllFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ReplyAllFill;\n"
  },
  {
    "path": "src/icons/reply-all.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ReplyAll = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reply-all', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.098 5.013a.144.144 0 0 1 .202.134V6.3a.5.5 0 0 0 .5.5c.667 0 2.013.005 3.3.822.984.624 1.99 1.76 2.595 3.876-1.02-.983-2.185-1.516-3.205-1.799a8.7 8.7 0 0 0-1.921-.306 7 7 0 0 0-.798.008h-.013l-.005.001h-.001L8.8 9.9l-.05-.498a.5.5 0 0 0-.45.498v1.153c0 .108-.11.176-.202.134L4.114 8.254l-.042-.028a.147.147 0 0 1 0-.252l.042-.028zM9.3 10.386q.102 0 .223.006c.434.02 1.034.086 1.7.271 1.326.368 2.896 1.202 3.94 3.08a.5.5 0 0 0 .933-.305c-.464-3.71-1.886-5.662-3.46-6.66-1.245-.79-2.527-.942-3.336-.971v-.66a1.144 1.144 0 0 0-1.767-.96l-3.994 2.94a1.147 1.147 0 0 0 0 1.946l3.994 2.94a1.144 1.144 0 0 0 1.767-.96z\" />\n        <path d=\"M5.232 4.293a.5.5 0 0 0-.7-.106L.54 7.127a1.147 1.147 0 0 0 0 1.946l3.994 2.94a.5.5 0 1 0 .593-.805L1.114 8.254l-.042-.028a.147.147 0 0 1 0-.252l.042-.028 4.012-2.954a.5.5 0 0 0 .106-.699\" />\n      </svg>\n    );\n  },\n);\n\nReplyAll.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ReplyAll;\n"
  },
  {
    "path": "src/icons/reply-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ReplyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reply-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.921 11.9 1.353 8.62a.72.72 0 0 1 0-1.238L5.921 4.1A.716.716 0 0 1 7 4.719V6c1.5 0 6 0 7 8-2.5-4.5-7-4-7-4v1.281c0 .56-.606.898-1.079.62z\" />\n      </svg>\n    );\n  },\n);\n\nReplyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ReplyFill;\n"
  },
  {
    "path": "src/icons/reply.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Reply = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-reply', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.598 5.013a.144.144 0 0 1 .202.134V6.3a.5.5 0 0 0 .5.5c.667 0 2.013.005 3.3.822.984.624 1.99 1.76 2.595 3.876-1.02-.983-2.185-1.516-3.205-1.799a8.7 8.7 0 0 0-1.921-.306 7 7 0 0 0-.798.008h-.013l-.005.001h-.001L7.3 9.9l-.05-.498a.5.5 0 0 0-.45.498v1.153c0 .108-.11.176-.202.134L2.614 8.254l-.042-.028a.147.147 0 0 1 0-.252l.042-.028zM7.8 10.386q.103 0 .223.006c.434.02 1.034.086 1.7.271 1.326.368 2.896 1.202 3.94 3.08a.5.5 0 0 0 .933-.305c-.464-3.71-1.886-5.662-3.46-6.66-1.245-.79-2.527-.942-3.336-.971v-.66a1.144 1.144 0 0 0-1.767-.96l-3.994 2.94a1.147 1.147 0 0 0 0 1.946l3.994 2.94a1.144 1.144 0 0 0 1.767-.96z\" />\n      </svg>\n    );\n  },\n);\n\nReply.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Reply;\n"
  },
  {
    "path": "src/icons/rewind-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RewindBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2m7.729 1.055A.5.5 0 0 1 8 5.5v1.886l3.21-2.293A.5.5 0 0 1 12 5.5v5a.5.5 0 0 1-.79.407L8 8.614V10.5a.5.5 0 0 1-.79.407l-3.5-2.5a.5.5 0 0 1 0-.814l3.5-2.5a.5.5 0 0 1 .519-.038\" />\n      </svg>\n    );\n  },\n);\n\nRewindBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RewindBtnFill;\n"
  },
  {
    "path": "src/icons/rewind-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RewindBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind-btn', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.21 5.093A.5.5 0 0 1 8 5.5v1.886l3.21-2.293A.5.5 0 0 1 12 5.5v5a.5.5 0 0 1-.79.407L8 8.614V10.5a.5.5 0 0 1-.79.407l-3.5-2.5a.5.5 0 0 1 0-.814z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nRewindBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RewindBtn;\n"
  },
  {
    "path": "src/icons/rewind-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RewindCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M7.729 5.055A.5.5 0 0 1 8 5.5v1.886l3.21-2.293A.5.5 0 0 1 12 5.5v5a.5.5 0 0 1-.79.407L8 8.614V10.5a.5.5 0 0 1-.79.407l-3.5-2.5a.5.5 0 0 1 0-.814l3.5-2.5a.5.5 0 0 1 .519-.038\" />\n      </svg>\n    );\n  },\n);\n\nRewindCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RewindCircleFill;\n"
  },
  {
    "path": "src/icons/rewind-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RewindCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.729 5.055a.5.5 0 0 0-.52.038l-3.5 2.5a.5.5 0 0 0 0 .814l3.5 2.5A.5.5 0 0 0 8 10.5V8.614l3.21 2.293A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.79-.407L8 7.386V5.5a.5.5 0 0 0-.271-.445\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8\" />\n      </svg>\n    );\n  },\n);\n\nRewindCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RewindCircle;\n"
  },
  {
    "path": "src/icons/rewind-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RewindFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.404 7.304a.802.802 0 0 0 0 1.392l6.363 3.692c.52.302 1.233-.043 1.233-.696V4.308c0-.653-.713-.998-1.233-.696z\" />\n        <path d=\"M.404 7.304a.802.802 0 0 0 0 1.392l6.363 3.692c.52.302 1.233-.043 1.233-.696V4.308c0-.653-.713-.998-1.233-.696z\" />\n      </svg>\n    );\n  },\n);\n\nRewindFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RewindFill;\n"
  },
  {
    "path": "src/icons/rewind.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Rewind = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rewind', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.196 8 15 4.633v6.734zm-.792-.696a.802.802 0 0 0 0 1.392l6.363 3.692c.52.302 1.233-.043 1.233-.696V4.308c0-.653-.713-.998-1.233-.696z\" />\n        <path d=\"M1.196 8 7 4.633v6.734zm-.792-.696a.802.802 0 0 0 0 1.392l6.363 3.692c.52.302 1.233-.043 1.233-.696V4.308c0-.653-.713-.998-1.233-.696z\" />\n      </svg>\n    );\n  },\n);\n\nRewind.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Rewind;\n"
  },
  {
    "path": "src/icons/robot.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Robot = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-robot', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 12.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5M3 8.062C3 6.76 4.235 5.765 5.53 5.886a26.6 26.6 0 0 0 4.94 0C11.765 5.765 13 6.76 13 8.062v1.157a.93.93 0 0 1-.765.935c-.845.147-2.34.346-4.235.346s-3.39-.2-4.235-.346A.93.93 0 0 1 3 9.219zm4.542-.827a.25.25 0 0 0-.217.068l-.92.9a25 25 0 0 1-1.871-.183.25.25 0 0 0-.068.495c.55.076 1.232.149 2.02.193a.25.25 0 0 0 .189-.071l.754-.736.847 1.71a.25.25 0 0 0 .404.062l.932-.97a25 25 0 0 0 1.922-.188.25.25 0 0 0-.068-.495c-.538.074-1.207.145-1.98.189a.25.25 0 0 0-.166.076l-.754.785-.842-1.7a.25.25 0 0 0-.182-.135\" />\n        <path d=\"M8.5 1.866a1 1 0 1 0-1 0V3h-2A4.5 4.5 0 0 0 1 7.5V8a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1v1a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-1a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.5A4.5 4.5 0 0 0 10.5 3h-2zM14 7.5V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7.5A3.5 3.5 0 0 1 5.5 4h5A3.5 3.5 0 0 1 14 7.5\" />\n      </svg>\n    );\n  },\n);\n\nRobot.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Robot;\n"
  },
  {
    "path": "src/icons/rocket-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RocketFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rocket-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.175 1.991c.81 1.312 1.583 3.43 1.778 6.819l1.5 1.83A2.5 2.5 0 0 1 14 12.202V15.5a.5.5 0 0 1-.9.3l-1.125-1.5c-.166-.222-.42-.4-.752-.57-.214-.108-.414-.192-.627-.282l-.196-.083C9.7 13.793 8.85 14 8 14s-1.7-.207-2.4-.635q-.101.044-.198.084c-.211.089-.411.173-.625.281-.332.17-.586.348-.752.57L2.9 15.8a.5.5 0 0 1-.9-.3v-3.298a2.5 2.5 0 0 1 .548-1.562l.004-.005L4.049 8.81c.197-3.323.969-5.434 1.774-6.756.466-.767.94-1.262 1.31-1.57a3.7 3.7 0 0 1 .601-.41A.55.55 0 0 1 8 0c.101 0 .17.027.25.064q.056.025.145.075c.118.066.277.167.463.315.373.297.85.779 1.317 1.537M9.5 6c0-1.105-.672-2-1.5-2s-1.5.895-1.5 2S7.172 8 8 8s1.5-.895 1.5-2\" />\n        <path d=\"M8 14.5c.5 0 .999-.046 1.479-.139L8.4 15.8a.5.5 0 0 1-.8 0l-1.079-1.439c.48.093.98.139 1.479.139\" />\n      </svg>\n    );\n  },\n);\n\nRocketFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RocketFill;\n"
  },
  {
    "path": "src/icons/rocket-takeoff-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RocketTakeoffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rocket-takeoff-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.17 9.53c2.307-2.592 3.278-4.684 3.641-6.218.21-.887.214-1.58.16-2.065a3.6 3.6 0 0 0-.108-.563 2 2 0 0 0-.078-.23V.453c-.073-.164-.168-.234-.352-.295a2 2 0 0 0-.16-.045 4 4 0 0 0-.57-.093c-.49-.044-1.19-.03-2.08.188-1.536.374-3.618 1.343-6.161 3.604l-2.4.238h-.006a2.55 2.55 0 0 0-1.524.734L.15 7.17a.512.512 0 0 0 .433.868l1.896-.271c.28-.04.592.013.955.132.232.076.437.16.655.248l.203.083c.196.816.66 1.58 1.275 2.195.613.614 1.376 1.08 2.191 1.277l.082.202c.089.218.173.424.249.657.118.363.172.676.132.956l-.271 1.9a.512.512 0 0 0 .867.433l2.382-2.386c.41-.41.668-.949.732-1.526zm.11-3.699c-.797.8-1.93.961-2.528.362-.598-.6-.436-1.733.361-2.532.798-.799 1.93-.96 2.528-.361s.437 1.732-.36 2.531Z\" />\n        <path d=\"M5.205 10.787a7.6 7.6 0 0 0 1.804 1.352c-1.118 1.007-4.929 2.028-5.054 1.903-.126-.127.737-4.189 1.839-5.18.346.69.837 1.35 1.411 1.925\" />\n      </svg>\n    );\n  },\n);\n\nRocketTakeoffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RocketTakeoffFill;\n"
  },
  {
    "path": "src/icons/rocket-takeoff.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RocketTakeoff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rocket-takeoff', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.752 6.193c.599.6 1.73.437 2.528-.362s.96-1.932.362-2.531c-.599-.6-1.73-.438-2.528.361-.798.8-.96 1.933-.362 2.532\" />\n        <path d=\"M15.811 3.312c-.363 1.534-1.334 3.626-3.64 6.218l-.24 2.408a2.56 2.56 0 0 1-.732 1.526L8.817 15.85a.51.51 0 0 1-.867-.434l.27-1.899c.04-.28-.013-.593-.131-.956a9 9 0 0 0-.249-.657l-.082-.202c-.815-.197-1.578-.662-2.191-1.277-.614-.615-1.079-1.379-1.275-2.195l-.203-.083a10 10 0 0 0-.655-.248c-.363-.119-.675-.172-.955-.132l-1.896.27A.51.51 0 0 1 .15 7.17l2.382-2.386c.41-.41.947-.67 1.524-.734h.006l2.4-.238C9.005 1.55 11.087.582 12.623.208c.89-.217 1.59-.232 2.08-.188.244.023.435.06.57.093q.1.026.16.045c.184.06.279.13.351.295l.029.073a3.5 3.5 0 0 1 .157.721c.055.485.051 1.178-.159 2.065m-4.828 7.475.04-.04-.107 1.081a1.54 1.54 0 0 1-.44.913l-1.298 1.3.054-.38c.072-.506-.034-.993-.172-1.418a9 9 0 0 0-.164-.45c.738-.065 1.462-.38 2.087-1.006M5.205 5c-.625.626-.94 1.351-1.004 2.09a9 9 0 0 0-.45-.164c-.424-.138-.91-.244-1.416-.172l-.38.054 1.3-1.3c.245-.246.566-.401.91-.44l1.08-.107zm9.406-3.961c-.38-.034-.967-.027-1.746.163-1.558.38-3.917 1.496-6.937 4.521-.62.62-.799 1.34-.687 2.051.107.676.483 1.362 1.048 1.928.564.565 1.25.941 1.924 1.049.71.112 1.429-.067 2.048-.688 3.079-3.083 4.192-5.444 4.556-6.987.183-.771.18-1.345.138-1.713a3 3 0 0 0-.045-.283 3 3 0 0 0-.3-.041Z\" />\n        <path d=\"M7.009 12.139a7.6 7.6 0 0 1-1.804-1.352A7.6 7.6 0 0 1 3.794 8.86c-1.102.992-1.965 5.054-1.839 5.18.125.126 3.936-.896 5.054-1.902Z\" />\n      </svg>\n    );\n  },\n);\n\nRocketTakeoff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RocketTakeoff;\n"
  },
  {
    "path": "src/icons/rocket.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Rocket = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rocket', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 8c.828 0 1.5-.895 1.5-2S8.828 4 8 4s-1.5.895-1.5 2S7.172 8 8 8\" />\n        <path d=\"M11.953 8.81c-.195-3.388-.968-5.507-1.777-6.819C9.707 1.233 9.23.751 8.857.454a3.5 3.5 0 0 0-.463-.315A2 2 0 0 0 8.25.064.55.55 0 0 0 8 0a.55.55 0 0 0-.266.073 2 2 0 0 0-.142.08 4 4 0 0 0-.459.33c-.37.308-.844.803-1.31 1.57-.805 1.322-1.577 3.433-1.774 6.756l-1.497 1.826-.004.005A2.5 2.5 0 0 0 2 12.202V15.5a.5.5 0 0 0 .9.3l1.125-1.5c.166-.222.42-.4.752-.57.214-.108.414-.192.625-.281l.198-.084c.7.428 1.55.635 2.4.635s1.7-.207 2.4-.635q.1.044.196.083c.213.09.413.174.627.282.332.17.586.348.752.57l1.125 1.5a.5.5 0 0 0 .9-.3v-3.298a2.5 2.5 0 0 0-.548-1.562zM12 10.445v.055c0 .866-.284 1.585-.75 2.14.146.064.292.13.425.199.39.197.8.46 1.1.86L13 14v-1.798a1.5 1.5 0 0 0-.327-.935zM4.75 12.64C4.284 12.085 4 11.366 4 10.5v-.054l-.673.82a1.5 1.5 0 0 0-.327.936V14l.225-.3c.3-.4.71-.664 1.1-.861.133-.068.279-.135.425-.199M8.009 1.073q.096.06.226.163c.284.226.683.621 1.09 1.28C10.137 3.836 11 6.237 11 10.5c0 .858-.374 1.48-.943 1.893C9.517 12.786 8.781 13 8 13s-1.517-.214-2.057-.607C5.373 11.979 5 11.358 5 10.5c0-4.182.86-6.586 1.677-7.928.409-.67.81-1.082 1.096-1.32q.136-.113.236-.18Z\" />\n        <path d=\"M9.479 14.361c-.48.093-.98.139-1.479.139s-.999-.046-1.479-.139L7.6 15.8a.5.5 0 0 0 .8 0z\" />\n      </svg>\n    );\n  },\n);\n\nRocket.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Rocket;\n"
  },
  {
    "path": "src/icons/router-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RouterFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-router-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.525 3.025a3.5 3.5 0 0 1 4.95 0 .5.5 0 1 0 .707-.707 4.5 4.5 0 0 0-6.364 0 .5.5 0 0 0 .707.707\" />\n        <path d=\"M6.94 4.44a1.5 1.5 0 0 1 2.12 0 .5.5 0 0 0 .708-.708 2.5 2.5 0 0 0-3.536 0 .5.5 0 0 0 .707.707Z\" />\n        <path d=\"M2.974 2.342a.5.5 0 1 0-.948.316L3.806 8H1.5A1.5 1.5 0 0 0 0 9.5v2A1.5 1.5 0 0 0 1.5 13H2a.5.5 0 0 0 .5.5h2A.5.5 0 0 0 5 13h6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5h.5a1.5 1.5 0 0 0 1.5-1.5v-2A1.5 1.5 0 0 0 14.5 8h-2.306l1.78-5.342a.5.5 0 1 0-.948-.316L11.14 8H4.86zM2.5 11a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m4.5-.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m2.5.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m1.5-.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m2 0a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0\" />\n        <path d=\"M8.5 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nRouterFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RouterFill;\n"
  },
  {
    "path": "src/icons/router.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Router = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-router', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.525 3.025a3.5 3.5 0 0 1 4.95 0 .5.5 0 1 0 .707-.707 4.5 4.5 0 0 0-6.364 0 .5.5 0 0 0 .707.707\" />\n        <path d=\"M6.94 4.44a1.5 1.5 0 0 1 2.12 0 .5.5 0 0 0 .708-.708 2.5 2.5 0 0 0-3.536 0 .5.5 0 0 0 .707.707ZM2.5 11a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m4.5-.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m2.5.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m1.5-.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0\" />\n        <path d=\"M2.974 2.342a.5.5 0 1 0-.948.316L3.806 8H1.5A1.5 1.5 0 0 0 0 9.5v2A1.5 1.5 0 0 0 1.5 13H2a.5.5 0 0 0 .5.5h2A.5.5 0 0 0 5 13h6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5h.5a1.5 1.5 0 0 0 1.5-1.5v-2A1.5 1.5 0 0 0 14.5 8h-2.306l1.78-5.342a.5.5 0 1 0-.948-.316L11.14 8H4.86zM14.5 9a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5z\" />\n        <path d=\"M8.5 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nRouter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Router;\n"
  },
  {
    "path": "src/icons/rss-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst RssFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rss-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm1.5 2.5c5.523 0 10 4.477 10 10a1 1 0 1 1-2 0 8 8 0 0 0-8-8 1 1 0 0 1 0-2m0 4a6 6 0 0 1 6 6 1 1 0 1 1-2 0 4 4 0 0 0-4-4 1 1 0 0 1 0-2m.5 7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nRssFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default RssFill;\n"
  },
  {
    "path": "src/icons/rss.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Rss = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rss', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M5.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-3-8.5a1 1 0 0 1 1-1c5.523 0 10 4.477 10 10a1 1 0 1 1-2 0 8 8 0 0 0-8-8 1 1 0 0 1-1-1m0 4a1 1 0 0 1 1-1 6 6 0 0 1 6 6 1 1 0 1 1-2 0 4 4 0 0 0-4-4 1 1 0 0 1-1-1\" />\n      </svg>\n    );\n  },\n);\n\nRss.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Rss;\n"
  },
  {
    "path": "src/icons/rulers.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Rulers = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-rulers', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 0a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5v-1H2v-1h4v-1H4v-1h2v-1H2v-1h4V9H4V8h2V7H2V6h4V2h1v4h1V4h1v2h1V2h1v4h1V4h1v2h1V2h1v4h1V1a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nRulers.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Rulers;\n"
  },
  {
    "path": "src/icons/safe-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SafeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-safe-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.778 9.414A2 2 0 1 1 6.95 6.586a2 2 0 0 1 2.828 2.828\" />\n        <path d=\"M2.5 0A1.5 1.5 0 0 0 1 1.5V3H.5a.5.5 0 0 0 0 1H1v3.5H.5a.5.5 0 0 0 0 1H1V12H.5a.5.5 0 0 0 0 1H1v1.5A1.5 1.5 0 0 0 2.5 16h12a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 14.5 0zm3.036 4.464 1.09 1.09a3 3 0 0 1 3.476 0l1.09-1.09a.5.5 0 1 1 .707.708l-1.09 1.09c.74 1.037.74 2.44 0 3.476l1.09 1.09a.5.5 0 1 1-.707.708l-1.09-1.09a3 3 0 0 1-3.476 0l-1.09 1.09a.5.5 0 1 1-.708-.708l1.09-1.09a3 3 0 0 1 0-3.476l-1.09-1.09a.5.5 0 1 1 .708-.708M14 6.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nSafeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SafeFill;\n"
  },
  {
    "path": "src/icons/safe.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Safe = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-safe', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 1.5A1.5 1.5 0 0 1 2.5 0h12A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-12A1.5 1.5 0 0 1 1 14.5V13H.5a.5.5 0 0 1 0-1H1V8.5H.5a.5.5 0 0 1 0-1H1V4H.5a.5.5 0 0 1 0-1H1zM2.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M13.5 6a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5M4.828 4.464a.5.5 0 0 1 .708 0l1.09 1.09a3 3 0 0 1 3.476 0l1.09-1.09a.5.5 0 1 1 .707.708l-1.09 1.09c.74 1.037.74 2.44 0 3.476l1.09 1.09a.5.5 0 1 1-.707.708l-1.09-1.09a3 3 0 0 1-3.476 0l-1.09 1.09a.5.5 0 1 1-.708-.708l1.09-1.09a3 3 0 0 1 0-3.476l-1.09-1.09a.5.5 0 0 1 0-.708M6.95 6.586a2 2 0 1 0 2.828 2.828A2 2 0 0 0 6.95 6.586\" />\n      </svg>\n    );\n  },\n);\n\nSafe.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Safe;\n"
  },
  {
    "path": "src/icons/safe2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Safe2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-safe2-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.563 8H5.035a3.5 3.5 0 0 1 .662-1.596l1.08 1.08q-.142.24-.214.516m.921-1.223-1.08-1.08A3.5 3.5 0 0 1 8 5.035v1.528q-.277.072-.516.214M9 6.563V5.035a3.5 3.5 0 0 1 1.596.662l-1.08 1.08A2 2 0 0 0 9 6.563m1.223.921 1.08-1.08c.343.458.577 1.003.662 1.596h-1.528a2 2 0 0 0-.214-.516M10.437 9h1.528a3.5 3.5 0 0 1-.662 1.596l-1.08-1.08q.142-.24.214-.516m-.921 1.223 1.08 1.08A3.5 3.5 0 0 1 9 11.965v-1.528q.277-.072.516-.214M8 10.437v1.528a3.5 3.5 0 0 1-1.596-.662l1.08-1.08q.24.142.516.214m-1.223-.921-1.08 1.08A3.5 3.5 0 0 1 5.035 9h1.528q.072.277.214.516M7.5 8.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0\" />\n        <path d=\"M2.5 1A1.5 1.5 0 0 0 1 2.5V3H.5a.5.5 0 0 0 0 1H1v4H.5a.5.5 0 0 0 0 1H1v4H.5a.5.5 0 0 0 0 1H1v.5A1.5 1.5 0 0 0 2.5 16h12a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 14.5 1zm6 3a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9\" />\n      </svg>\n    );\n  },\n);\n\nSafe2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Safe2Fill;\n"
  },
  {
    "path": "src/icons/safe2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Safe2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-safe2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 2.5A1.5 1.5 0 0 1 2.5 1h12A1.5 1.5 0 0 1 16 2.5v12a1.5 1.5 0 0 1-1.5 1.5h-12A1.5 1.5 0 0 1 1 14.5V14H.5a.5.5 0 0 1 0-1H1V9H.5a.5.5 0 0 1 0-1H1V4H.5a.5.5 0 0 1 0-1H1zM2.5 2a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5v-12a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M5.035 8h1.528q.072-.277.214-.516l-1.08-1.08A3.5 3.5 0 0 0 5.035 8m1.369-2.303 1.08 1.08q.24-.142.516-.214V5.035a3.5 3.5 0 0 0-1.596.662M9 5.035v1.528q.277.072.516.214l1.08-1.08A3.5 3.5 0 0 0 9 5.035m2.303 1.369-1.08 1.08q.142.24.214.516h1.528a3.5 3.5 0 0 0-.662-1.596M11.965 9h-1.528q-.072.277-.214.516l1.08 1.08A3.5 3.5 0 0 0 11.965 9m-1.369 2.303-1.08-1.08q-.24.142-.516.214v1.528a3.5 3.5 0 0 0 1.596-.662M8 11.965v-1.528a2 2 0 0 1-.516-.214l-1.08 1.08A3.5 3.5 0 0 0 8 11.965m-2.303-1.369 1.08-1.08A2 2 0 0 1 6.563 9H5.035c.085.593.319 1.138.662 1.596M4 8.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0m4.5-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nSafe2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Safe2;\n"
  },
  {
    "path": "src/icons/save-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SaveFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-save-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 1.5A1.5 1.5 0 0 1 10 0h4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h6c-.314.418-.5.937-.5 1.5v7.793L4.854 6.646a.5.5 0 1 0-.708.708l3.5 3.5a.5.5 0 0 0 .708 0l3.5-3.5a.5.5 0 0 0-.708-.708L8.5 9.293z\" />\n      </svg>\n    );\n  },\n);\n\nSaveFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SaveFill;\n"
  },
  {
    "path": "src/icons/save.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Save = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-save', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H9.5a1 1 0 0 0-1 1v7.293l2.646-2.647a.5.5 0 0 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L7.5 9.293V2a2 2 0 0 1 2-2H14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h2.5a.5.5 0 0 1 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nSave.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Save;\n"
  },
  {
    "path": "src/icons/save2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Save2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-save2-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 1.5A1.5 1.5 0 0 1 10 0h4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h6c-.314.418-.5.937-.5 1.5v6h-2a.5.5 0 0 0-.354.854l2.5 2.5a.5.5 0 0 0 .708 0l2.5-2.5A.5.5 0 0 0 10.5 7.5h-2z\" />\n      </svg>\n    );\n  },\n);\n\nSave2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Save2Fill;\n"
  },
  {
    "path": "src/icons/save2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Save2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-save2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H9.5a1 1 0 0 0-1 1v4.5h2a.5.5 0 0 1 .354.854l-2.5 2.5a.5.5 0 0 1-.708 0l-2.5-2.5A.5.5 0 0 1 5.5 6.5h2V2a2 2 0 0 1 2-2H14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h2.5a.5.5 0 0 1 0 1z\" />\n      </svg>\n    );\n  },\n);\n\nSave2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Save2;\n"
  },
  {
    "path": "src/icons/scissors.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Scissors = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-scissors', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 3.5c-.614-.884-.074-1.962.858-2.5L8 7.226 11.642 1c.932.538 1.472 1.616.858 2.5L8.81 8.61l1.556 2.661a2.5 2.5 0 1 1-.794.637L8 9.73l-1.572 2.177a2.5 2.5 0 1 1-.794-.637L7.19 8.61zm2.5 10a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m7 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0\" />\n      </svg>\n    );\n  },\n);\n\nScissors.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Scissors;\n"
  },
  {
    "path": "src/icons/scooter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Scooter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-scooter', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-.39l1.4 7a2.5 2.5 0 1 1-.98.195l-.189-.938-2.43 3.527A.5.5 0 0 1 9.5 13H4.95a2.5 2.5 0 1 1 0-1h4.287l2.831-4.11L11.09 3H9.5a.5.5 0 0 1-.5-.5M3.915 12a1.5 1.5 0 1 0 0 1H2.5a.5.5 0 0 1 0-1zm8.817-.789A1.499 1.499 0 0 0 13.5 14a1.5 1.5 0 0 0 .213-2.985l.277 1.387a.5.5 0 0 1-.98.196z\"\n        />\n      </svg>\n    );\n  },\n);\n\nScooter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Scooter;\n"
  },
  {
    "path": "src/icons/screwdriver.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Screwdriver = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-screwdriver', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 .995.995 0l3.064 2.19a1 1 0 0 1 .417.809v.07c0 .264.105.517.291.704l5.677 5.676.909-.303a1 1 0 0 1 1.018.24l3.338 3.339a.995.995 0 0 1 0 1.406L14.13 15.71a.995.995 0 0 1-1.406 0l-3.337-3.34a1 1 0 0 1-.24-1.018l.302-.909-5.676-5.677a1 1 0 0 0-.704-.291H3a1 1 0 0 1-.81-.417zm11.293 9.595a.497.497 0 1 0-.703.703l2.984 2.984a.497.497 0 0 0 .703-.703z\" />\n      </svg>\n    );\n  },\n);\n\nScrewdriver.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Screwdriver;\n"
  },
  {
    "path": "src/icons/sd-card-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SdCardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sd-card-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 0H5.914a1.5 1.5 0 0 0-1.06.44L2.439 2.853A1.5 1.5 0 0 0 2 3.914V14.5A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 12.5 0m-7 2.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m2 0a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m2.75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 1.5 0m1.25-.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75\" />\n      </svg>\n    );\n  },\n);\n\nSdCardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SdCardFill;\n"
  },
  {
    "path": "src/icons/sd-card.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SdCard = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sd-card', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.25 3.5a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2 0a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2 0a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2 0a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M5.914 0H12.5A1.5 1.5 0 0 1 14 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5V3.914c0-.398.158-.78.44-1.06L4.853.439A1.5 1.5 0 0 1 5.914 0M13 1.5a.5.5 0 0 0-.5-.5H5.914a.5.5 0 0 0-.353.146L3.146 3.561A.5.5 0 0 0 3 3.914V14.5a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSdCard.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SdCard;\n"
  },
  {
    "path": "src/icons/search-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SearchHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-search-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 13a6.47 6.47 0 0 0 3.845-1.258h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1A6.47 6.47 0 0 0 13 6.5 6.5 6.5 0 0 0 6.5 0a6.5 6.5 0 1 0 0 13m0-8.518c1.664-1.673 5.825 1.254 0 5.018-5.825-3.764-1.664-6.69 0-5.018\" />\n      </svg>\n    );\n  },\n);\n\nSearchHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SearchHeartFill;\n"
  },
  {
    "path": "src/icons/search-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SearchHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-search-heart', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 4.482c1.664-1.673 5.825 1.254 0 5.018-5.825-3.764-1.664-6.69 0-5.018\" />\n        <path d=\"M13 6.5a6.47 6.47 0 0 1-1.258 3.844q.06.044.115.098l3.85 3.85a1 1 0 0 1-1.414 1.415l-3.85-3.85a1 1 0 0 1-.1-.115h.002A6.5 6.5 0 1 1 13 6.5M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11\" />\n      </svg>\n    );\n  },\n);\n\nSearchHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SearchHeart;\n"
  },
  {
    "path": "src/icons/search.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Search = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-search', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0\" />\n      </svg>\n    );\n  },\n);\n\nSearch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Search;\n"
  },
  {
    "path": "src/icons/segmented-nav.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SegmentedNav = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-segmented-nav', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm6 3h4V5H6zm9-1V6a1 1 0 0 0-1-1h-3v4h3a1 1 0 0 0 1-1\" />\n      </svg>\n    );\n  },\n);\n\nSegmentedNav.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SegmentedNav;\n"
  },
  {
    "path": "src/icons/send-arrow-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendArrowDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-arrow-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854.146a.5.5 0 0 1 .11.54L13.026 8.03A4.5 4.5 0 0 0 8 12.5c0 .5 0 1.5-.773.36l-1.59-2.498L.644 7.184l-.002-.001-.41-.261a.5.5 0 0 1 .083-.886l.452-.18.001-.001L15.314.035a.5.5 0 0 1 .54.111M6.637 10.07l7.494-7.494.471-1.178-1.178.471L5.93 9.363l.338.215a.5.5 0 0 1 .154.154z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-1.646a.5.5 0 0 1-.722-.016l-1.149-1.25a.5.5 0 1 1 .737-.676l.28.305V11a.5.5 0 0 1 1 0v1.793l.396-.397a.5.5 0 0 1 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSendArrowDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendArrowDownFill;\n"
  },
  {
    "path": "src/icons/send-arrow-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendArrowDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-arrow-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854.146a.5.5 0 0 1 .11.54l-2.8 7a.5.5 0 1 1-.928-.372l1.895-4.738-7.494 7.494 1.376 2.162a.5.5 0 1 1-.844.537l-1.531-2.407L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM5.93 9.363l7.494-7.494L1.591 6.602z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-1.646a.5.5 0 0 1-.722-.016l-1.149-1.25a.5.5 0 1 1 .737-.676l.28.305V11a.5.5 0 0 1 1 0v1.793l.396-.397a.5.5 0 0 1 .708.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSendArrowDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendArrowDown;\n"
  },
  {
    "path": "src/icons/send-arrow-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendArrowUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-arrow-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854.146a.5.5 0 0 1 .11.54L13.026 8.03A4.5 4.5 0 0 0 8 12.5c0 .5 0 1.5-.773.36l-1.59-2.498L.644 7.184l-.002-.001-.41-.261a.5.5 0 0 1 .083-.886l.452-.18.001-.001L15.314.035a.5.5 0 0 1 .54.111M6.637 10.07l7.494-7.494.471-1.178-1.178.471L5.93 9.363l.338.215a.5.5 0 0 1 .154.154z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.354a.5.5 0 0 0-.722.016l-1.149 1.25a.5.5 0 1 0 .737.676l.28-.305V14a.5.5 0 0 0 1 0v-1.793l.396.397a.5.5 0 0 0 .708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSendArrowUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendArrowUpFill;\n"
  },
  {
    "path": "src/icons/send-arrow-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendArrowUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-arrow-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M15.854.146a.5.5 0 0 1 .11.54l-2.8 7a.5.5 0 1 1-.928-.372l1.895-4.738-7.494 7.494 1.376 2.162a.5.5 0 1 1-.844.537l-1.531-2.407L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM5.93 9.363l7.494-7.494L1.591 6.602z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.354-5.354a.5.5 0 0 0-.722.016l-1.149 1.25a.5.5 0 1 0 .737.676l.28-.305V14a.5.5 0 0 0 1 0v-1.793l.396.397a.5.5 0 0 0 .708-.708z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSendArrowUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendArrowUp;\n"
  },
  {
    "path": "src/icons/send-check-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendCheckFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-check-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-1.993-1.679a.5.5 0 0 0-.686.172l-1.17 1.95-.547-.547a.5.5 0 0 0-.708.708l.774.773a.75.75 0 0 0 1.174-.144l1.335-2.226a.5.5 0 0 0-.172-.686\" />\n      </svg>\n    );\n  },\n);\n\nSendCheckFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendCheckFill;\n"
  },
  {
    "path": "src/icons/send-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-check', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-1.993-1.679a.5.5 0 0 0-.686.172l-1.17 1.95-.547-.547a.5.5 0 0 0-.708.708l.774.773a.75.75 0 0 0 1.174-.144l1.335-2.226a.5.5 0 0 0-.172-.686\" />\n      </svg>\n    );\n  },\n);\n\nSendCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendCheck;\n"
  },
  {
    "path": "src/icons/send-dash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendDashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-dash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nSendDashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendDashFill;\n"
  },
  {
    "path": "src/icons/send-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-dash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nSendDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendDash;\n"
  },
  {
    "path": "src/icons/send-exclamation-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendExclamationFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-exclamation-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1.5a.5.5 0 0 1-1 0V11a.5.5 0 0 1 1 0m0 3a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nSendExclamationFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendExclamationFill;\n"
  },
  {
    "path": "src/icons/send-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m.5-5v1.5a.5.5 0 0 1-1 0V11a.5.5 0 0 1 1 0m0 3a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nSendExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendExclamation;\n"
  },
  {
    "path": "src/icons/send-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n      </svg>\n    );\n  },\n);\n\nSendFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendFill;\n"
  },
  {
    "path": "src/icons/send-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendPlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSendPlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendPlusFill;\n"
  },
  {
    "path": "src/icons/send-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-plus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSendPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendPlus;\n"
  },
  {
    "path": "src/icons/send-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M14.975 10.025a3.5 3.5 0 1 0-4.95 4.95 3.5 3.5 0 0 0 4.95-4.95m-4.243.707a2.5 2.5 0 0 1 3.147-.318l-3.465 3.465a2.5 2.5 0 0 1 .318-3.147m.39 3.854 3.464-3.465a2.501 2.501 0 0 1-3.465 3.465Z\" />\n      </svg>\n    );\n  },\n);\n\nSendSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendSlashFill;\n"
  },
  {
    "path": "src/icons/send-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M14.975 10.025a3.5 3.5 0 1 0-4.95 4.95 3.5 3.5 0 0 0 4.95-4.95m-4.243.707a2.5 2.5 0 0 1 3.147-.318l-3.465 3.465a2.5 2.5 0 0 1 .318-3.147m.39 3.854 3.464-3.465a2.501 2.501 0 0 1-3.465 3.465Z\" />\n      </svg>\n    );\n  },\n);\n\nSendSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendSlash;\n"
  },
  {
    "path": "src/icons/send-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 1.59 2.498C8 14 8 13 8 12.5a4.5 4.5 0 0 1 5.026-4.47zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nSendXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendXFill;\n"
  },
  {
    "path": "src/icons/send-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SendX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855a.75.75 0 0 0-.124 1.329l4.995 3.178 1.531 2.406a.5.5 0 0 0 .844-.536L6.637 10.07l7.494-7.494-1.895 4.738a.5.5 0 1 0 .928.372zm-2.54 1.183L5.93 9.363 1.591 6.602z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nSendX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SendX;\n"
  },
  {
    "path": "src/icons/send.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Send = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-send', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576zm6.787-8.201L1.591 6.602l4.339 2.76z\" />\n      </svg>\n    );\n  },\n);\n\nSend.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Send;\n"
  },
  {
    "path": "src/icons/server.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Server = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-server', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.333 2.667C1.333 1.194 4.318 0 8 0s6.667 1.194 6.667 2.667V4c0 1.473-2.985 2.667-6.667 2.667S1.333 5.473 1.333 4z\" />\n        <path d=\"M1.333 6.334v3C1.333 10.805 4.318 12 8 12s6.667-1.194 6.667-2.667V6.334a6.5 6.5 0 0 1-1.458.79C11.81 7.684 9.967 8 8 8s-3.809-.317-5.208-.876a6.5 6.5 0 0 1-1.458-.79z\" />\n        <path d=\"M14.667 11.668a6.5 6.5 0 0 1-1.458.789c-1.4.56-3.242.876-5.21.876-1.966 0-3.809-.316-5.208-.876a6.5 6.5 0 0 1-1.458-.79v1.666C1.333 14.806 4.318 16 8 16s6.667-1.194 6.667-2.667z\" />\n      </svg>\n    );\n  },\n);\n\nServer.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Server;\n"
  },
  {
    "path": "src/icons/shadows.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Shadows = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shadows', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-8 7a.5.5 0 0 1 0-1h3.5q.048 0 .093.009A7 7 0 0 0 12.9 13H8a.5.5 0 0 1 0-1h5.745q.331-.474.581-1H8a.5.5 0 0 1 0-1h6.71a7 7 0 0 0 .22-1H8a.5.5 0 0 1 0-1h7q0-.51-.07-1H8a.5.5 0 0 1 0-1h6.71a7 7 0 0 0-.384-1H8a.5.5 0 0 1 0-1h5.745a7 7 0 0 0-.846-1H8a.5.5 0 0 1 0-1h3.608A7 7 0 1 0 8 15\" />\n      </svg>\n    );\n  },\n);\n\nShadows.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Shadows;\n"
  },
  {
    "path": "src/icons/share-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-share-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.5 2.5 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5\" />\n      </svg>\n    );\n  },\n);\n\nShareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShareFill;\n"
  },
  {
    "path": "src/icons/share.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Share = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-share', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.5 2.5 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5m-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3\" />\n      </svg>\n    );\n  },\n);\n\nShare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Share;\n"
  },
  {
    "path": "src/icons/shield-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nShieldCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldCheck;\n"
  },
  {
    "path": "src/icons/shield-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M7.001 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.553.553 0 0 1-1.1 0z\" />\n      </svg>\n    );\n  },\n);\n\nShieldExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldExclamation;\n"
  },
  {
    "path": "src/icons/shield-fill-check.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFillCheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill-check', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0m2.146 5.146a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793z\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldFillCheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFillCheck;\n"
  },
  {
    "path": "src/icons/shield-fill-exclamation.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFillExclamation = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill-exclamation', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0m-.55 8.502L7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0M8.002 12a1 1 0 1 1 0-2 1 1 0 0 1 0 2\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldFillExclamation.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFillExclamation;\n"
  },
  {
    "path": "src/icons/shield-fill-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFillMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0M6 7.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldFillMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFillMinus;\n"
  },
  {
    "path": "src/icons/shield-fill-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFillPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0m-.5 5a.5.5 0 0 1 1 0v1.5H10a.5.5 0 0 1 0 1H8.5V9a.5.5 0 0 1-1 0V7.5H6a.5.5 0 0 1 0-1h1.5z\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldFillPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFillPlus;\n"
  },
  {
    "path": "src/icons/shield-fill-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFillX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0M6.854 5.146 8 6.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 7l1.147 1.146a.5.5 0 0 1-.708.708L8 7.707 6.854 8.854a.5.5 0 1 1-.708-.708L7.293 7 6.146 5.854a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nShieldFillX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFillX;\n"
  },
  {
    "path": "src/icons/shield-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n      </svg>\n    );\n  },\n);\n\nShieldFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldFill;\n"
  },
  {
    "path": "src/icons/shield-lock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldLockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-lock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0m0 5a1.5 1.5 0 0 1 .5 2.915l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99A1.5 1.5 0 0 1 8 5\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldLockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldLockFill;\n"
  },
  {
    "path": "src/icons/shield-lock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldLock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-lock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M9.5 6.5a1.5 1.5 0 0 1-1 1.415l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99a1.5 1.5 0 1 1 2-1.415\" />\n      </svg>\n    );\n  },\n);\n\nShieldLock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldLock;\n"
  },
  {
    "path": "src/icons/shield-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M5.5 7a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nShieldMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldMinus;\n"
  },
  {
    "path": "src/icons/shield-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M8 4.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V9a.5.5 0 0 1-1 0V7.5H6a.5.5 0 0 1 0-1h1.5V5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nShieldPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldPlus;\n"
  },
  {
    "path": "src/icons/shield-shaded.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldShaded = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-shaded', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 14.933a1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldShaded.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldShaded;\n"
  },
  {
    "path": "src/icons/shield-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.093 3.093c-.465 4.275.885 7.46 2.513 9.589a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.3 11.3 0 0 0 1.733-1.525zm12.215 8.215L3.128 1.128A61 61 0 0 1 5.073.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.483 3.626-.332 6.491-1.551 8.616m.338 3.046-13-13 .708-.708 13 13z\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldSlashFill;\n"
  },
  {
    "path": "src/icons/shield-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-slash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.093 3.093c-.465 4.275.885 7.46 2.513 9.589a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.3 11.3 0 0 0 1.733-1.525l-.745-.745a10.3 10.3 0 0 1-1.578 1.392c-.346.244-.652.42-.893.533q-.18.085-.293.118a1 1 0 0 1-.101.025 1 1 0 0 1-.1-.025 2 2 0 0 1-.294-.118 6 6 0 0 1-.893-.533 10.7 10.7 0 0 1-2.287-2.233C3.053 10.228 1.879 7.594 2.06 4.06zM3.98 1.98l-.852-.852A59 59 0 0 1 5.072.559C6.157.266 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.483 3.626-.332 6.491-1.551 8.616l-.77-.77c1.042-1.915 1.72-4.469 1.29-7.702a.48.48 0 0 0-.33-.39c-.65-.213-1.75-.56-2.836-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524a50 50 0 0 0-1.357.39zm9.666 12.374-13-13 .708-.708 13 13z\"\n        />\n      </svg>\n    );\n  },\n);\n\nShieldSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldSlash;\n"
  },
  {
    "path": "src/icons/shield-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShieldX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n        <path d=\"M6.146 5.146a.5.5 0 0 1 .708 0L8 6.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 7l1.147 1.146a.5.5 0 0 1-.708.708L8 7.707 6.854 8.854a.5.5 0 1 1-.708-.708L7.293 7 6.146 5.854a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nShieldX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShieldX;\n"
  },
  {
    "path": "src/icons/shield.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Shield = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shield', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56\" />\n      </svg>\n    );\n  },\n);\n\nShield.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Shield;\n"
  },
  {
    "path": "src/icons/shift-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShiftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shift-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.27 2.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H11.5v3a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-3H1.654C.78 10.5.326 9.455.924 8.816z\" />\n      </svg>\n    );\n  },\n);\n\nShiftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShiftFill;\n"
  },
  {
    "path": "src/icons/shift.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Shift = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shift', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.27 2.047a1 1 0 0 1 1.46 0l6.345 6.77c.6.638.146 1.683-.73 1.683H11.5v3a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-3H1.654C.78 10.5.326 9.455.924 8.816zM14.346 9.5 8 2.731 1.654 9.5H4.5a1 1 0 0 1 1 1v3h5v-3a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nShift.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Shift;\n"
  },
  {
    "path": "src/icons/shop-window.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ShopWindow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shop-window', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.97 1.35A1 1 0 0 1 3.73 1h8.54a1 1 0 0 1 .76.35l2.609 3.044A1.5 1.5 0 0 1 16 5.37v.255a2.375 2.375 0 0 1-4.25 1.458A2.37 2.37 0 0 1 9.875 8 2.37 2.37 0 0 1 8 7.083 2.37 2.37 0 0 1 6.125 8a2.37 2.37 0 0 1-1.875-.917A2.375 2.375 0 0 1 0 5.625V5.37a1.5 1.5 0 0 1 .361-.976zm1.78 4.275a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 1 0 2.75 0V5.37a.5.5 0 0 0-.12-.325L12.27 2H3.73L1.12 5.045A.5.5 0 0 0 1 5.37v.255a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0M1.5 8.5A.5.5 0 0 1 2 9v6h12V9a.5.5 0 0 1 1 0v6h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1V9a.5.5 0 0 1 .5-.5m2 .5a.5.5 0 0 1 .5.5V13h8V9.5a.5.5 0 0 1 1 0V13a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9.5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nShopWindow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ShopWindow;\n"
  },
  {
    "path": "src/icons/shop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Shop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shop', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.97 1.35A1 1 0 0 1 3.73 1h8.54a1 1 0 0 1 .76.35l2.609 3.044A1.5 1.5 0 0 1 16 5.37v.255a2.375 2.375 0 0 1-4.25 1.458A2.37 2.37 0 0 1 9.875 8 2.37 2.37 0 0 1 8 7.083 2.37 2.37 0 0 1 6.125 8a2.37 2.37 0 0 1-1.875-.917A2.375 2.375 0 0 1 0 5.625V5.37a1.5 1.5 0 0 1 .361-.976zm1.78 4.275a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 1 0 2.75 0V5.37a.5.5 0 0 0-.12-.325L12.27 2H3.73L1.12 5.045A.5.5 0 0 0 1 5.37v.255a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0M1.5 8.5A.5.5 0 0 1 2 9v6h1v-5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v5h6V9a.5.5 0 0 1 1 0v6h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1V9a.5.5 0 0 1 .5-.5M4 15h3v-5H4zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zm3 0h-2v3h2z\" />\n      </svg>\n    );\n  },\n);\n\nShop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Shop;\n"
  },
  {
    "path": "src/icons/shuffle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Shuffle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-shuffle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 3.5A.5.5 0 0 1 .5 3H1c2.202 0 3.827 1.24 4.874 2.418.49.552.865 1.102 1.126 1.532.26-.43.636-.98 1.126-1.532C9.173 4.24 10.798 3 13 3v1c-1.798 0-3.173 1.01-4.126 2.082A9.6 9.6 0 0 0 7.556 8a9.6 9.6 0 0 0 1.317 1.918C9.828 10.99 11.204 12 13 12v1c-2.202 0-3.827-1.24-4.874-2.418A10.6 10.6 0 0 1 7 9.05c-.26.43-.636.98-1.126 1.532C4.827 11.76 3.202 13 1 13H.5a.5.5 0 0 1 0-1H1c1.798 0 3.173-1.01 4.126-2.082A9.6 9.6 0 0 0 6.444 8a9.6 9.6 0 0 0-1.317-1.918C4.172 5.01 2.796 4 1 4H.5a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M13 5.466V1.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192m0 9v-3.932a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192\" />\n      </svg>\n    );\n  },\n);\n\nShuffle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Shuffle;\n"
  },
  {
    "path": "src/icons/sign-dead-end-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignDeadEndFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-dead-end-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.116 6.28h.32c.395 0 .582.24.582.722 0 .48-.186.718-.581.718h-.321zm3.636.066.268.845h-.552l.27-.845zm1.327-.066h.32c.394 0 .582.24.582.722 0 .48-.186.718-.582.718h-.32zm-.792 3h.32c.395 0 .582.24.582.722 0 .48-.186.718-.581.718h-.32z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM4.782 6h.69c.596 0 .886.355.886.998S6.066 8 5.473 8h-.69zM7.82 7.72V8H6.571V6H7.82v.28h-.917v.57h.863v.268h-.863v.602zm.397.28h-.34l.688-2h.371l.689 2h-.352l-.177-.554h-.702L8.216 8Zm1.53-2h.69c.596 0 .886.355.886.998S11.03 8 10.436 8h-.69zm-2.923 4.72V11H5.575V9h1.248v.28h-.917v.57h.863v.268h-.863v.602zm.572.28h-.32V9h.294l.933 1.436h.014V9h.32v2h-.292l-.936-1.44h-.013zm1.56-2h.69c.596 0 .886.355.886.998S10.238 11 9.645 11h-.69z\" />\n      </svg>\n    );\n  },\n);\n\nSignDeadEndFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignDeadEndFill;\n"
  },
  {
    "path": "src/icons/sign-dead-end.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignDeadEnd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-dead-end', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.783 6v2h.69c.593 0 .886-.359.886-1.002S6.07 6 5.473 6zm.333.28h.32c.395 0 .582.24.582.722 0 .48-.186.718-.581.718h-.321zM7.82 7.72h-.918v-.602h.863V6.85h-.863v-.57h.917V6H6.571v2H7.82zm.573-.274L8.216 8h-.34l.688-2h.371l.689 2h-.352l-.177-.554zm.627-.255-.268-.845h-.015l-.27.845zM9.746 6v2h.69c.593 0 .886-.359.886-1.002S11.032 6 10.436 6zm.333.28h.32c.394 0 .582.24.582.722 0 .48-.186.718-.582.718h-.32zm-4.173 4.44h.917V11H5.575V9h1.248v.28h-.917v.57h.863v.268h-.863zm1.489.28V9.56h.013L8.344 11h.292V9h-.32v1.436h-.014L7.369 9h-.293v2zm1.56 0V9h.69c.596 0 .886.355.886.998S10.238 11 9.645 11zm.653-1.72h-.32v1.44h.32c.395 0 .581-.239.581-.718 0-.481-.187-.722-.581-.722\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignDeadEnd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignDeadEnd;\n"
  },
  {
    "path": "src/icons/sign-do-not-enter-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignDoNotEnterFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-do-not-enter-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.237 4.28h-.32v1.44h.32c.396 0 .582-.239.582-.718 0-.481-.188-.722-.582-.722m2.392.859v-.277c0-.413-.211-.617-.494-.617-.285 0-.495.204-.495.617v.277c0 .414.21.618.495.618.283 0 .494-.204.494-.618m4.163 0v-.277c0-.413-.211-.617-.494-.617-.285 0-.495.204-.495.617v.277c0 .414.21.618.495.618.283 0 .494-.204.494-.618m.006 5.828v-.694h.39c.231 0 .378.126.378.354 0 .225-.142.34-.387.34z\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16M3.584 6V4h.69c.596 0 .886.355.886.998S4.867 6 4.274 6zm3.382-1.135v.272c0 .566-.318.903-.83.903-.513 0-.833-.337-.833-.903v-.272c0-.569.32-.904.832-.904.513 0 .83.337.83.904Zm1.021-.305V6h-.319V4h.293l.933 1.436h.015V4h.319v2h-.291L8 4.56zm3.142.305v.272c0 .566-.318.903-.83.903-.513 0-.833-.337-.833-.903v-.272c0-.569.32-.904.832-.904.513 0 .83.337.83.904Zm.899-.58V6h-.333V4.285h-.584V4h1.503v.285zM5.413 11.72V12H4.165v-2h1.248v.28h-.917v.57h.862v.268h-.862v.602zm.572.28h-.32v-2h.294l.933 1.436h.014v-1.435h.32V12h-.292l-.936-1.44h-.013zm2.279 0H7.93v-1.715h-.584V10H8.85v.284h-.586zm1.953-.28V12H8.97v-2h1.248v.28H9.3v.57h.863v.268H9.3v.602zM11.235 10c.42 0 .674.244.674.616a.575.575 0 0 1-.368.56l.404.824h-.373l-.36-.769h-.414V12h-.328v-2zM3.5 7h9a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSignDoNotEnterFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignDoNotEnterFill;\n"
  },
  {
    "path": "src/icons/sign-do-not-enter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignDoNotEnter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-do-not-enter', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.584 6V4h.69c.596 0 .886.355.886.998S4.867 6 4.274 6zm.653-1.72h-.32v1.44h.32c.396 0 .582-.239.582-.718 0-.481-.188-.722-.582-.722m2.729.585v.272c0 .566-.318.903-.83.903-.513 0-.833-.337-.833-.903v-.272c0-.569.32-.904.832-.904.513 0 .83.337.83.904Zm-.337.274v-.277c0-.413-.211-.617-.494-.617-.285 0-.495.204-.495.617v.277c0 .414.21.618.495.618.283 0 .494-.204.494-.618m1.358-.579V6h-.319V4h.293l.933 1.436h.015V4h.319v2h-.291L8 4.56zm3.142.305v.272c0 .566-.318.903-.83.903-.513 0-.833-.337-.833-.903v-.272c0-.569.32-.904.832-.904.513 0 .83.337.83.904Zm-.337.274v-.277c0-.413-.211-.617-.494-.617-.285 0-.495.204-.495.617v.277c0 .414.21.618.495.618.283 0 .494-.204.494-.618m1.236-.854V6h-.333V4.285h-.584V4h1.503v.285zM4.496 11.72h.917V12H4.165v-2h1.248v.28h-.917v.57h.862v.268h-.862zm1.489-1.16V12h-.32v-2h.294l.933 1.436h.014v-1.435h.32V12h-.292l-.936-1.44zm2.279-.275V12H7.93v-1.715h-.584V10H8.85v.284zM9.3 11.72h.917V12H8.97v-2h1.248v.28H9.3v.57h.863v.268H9.3zM10.47 10h.765c.42 0 .674.244.674.616a.575.575 0 0 1-.368.56l.404.824h-.373l-.36-.769h-.414V12h-.328zm.328.273v.694h.381c.245 0 .387-.115.387-.34 0-.228-.147-.354-.378-.354zM3.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m0-1A7 7 0 1 1 8 1a7 7 0 0 1 0 14\" />\n      </svg>\n    );\n  },\n);\n\nSignDoNotEnter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignDoNotEnter;\n"
  },
  {
    "path": "src/icons/sign-intersection-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM7.25 4h1.5v3.25H12v1.5H8.75V12h-1.5V8.75H4v-1.5h3.25z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionFill;\n"
  },
  {
    "path": "src/icons/sign-intersection-side-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionSideFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-side-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM6.25 4h1.5v3.25H11v1.5H7.75V12h-1.5z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionSideFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionSideFill;\n"
  },
  {
    "path": "src/icons/sign-intersection-side.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionSide = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-side', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.25 4v8h1.5V8.75H11v-1.5H7.75V4z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionSide.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionSide;\n"
  },
  {
    "path": "src/icons/sign-intersection-t-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionTFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-t-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM5 5h6v1.5H8.75V12h-1.5V6.5H5z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionTFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionTFill;\n"
  },
  {
    "path": "src/icons/sign-intersection-t.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionT = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-t', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 5v1.5h2.25V12h1.5V6.5H11V5z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionT.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionT;\n"
  },
  {
    "path": "src/icons/sign-intersection-y-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionYFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-y-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm1.443 4.762 1.014 1.106L8.75 8.83V12h-1.5V8.83L4.493 6.303l1.014-1.106L8 7.483z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionYFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionYFill;\n"
  },
  {
    "path": "src/icons/sign-intersection-y.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersectionY = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection-y', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.493 5.197 8 7.483 5.507 5.197 4.493 6.303 7.25 8.83V12h1.5V8.83l2.757-2.527z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersectionY.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersectionY;\n"
  },
  {
    "path": "src/icons/sign-intersection.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignIntersection = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-intersection', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.25 4v3.25H4v1.5h3.25V12h1.5V8.75H12v-1.5H8.75V4z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignIntersection.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignIntersection;\n"
  },
  {
    "path": "src/icons/sign-merge-left-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignMergeLeftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-merge-left-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM7.25 6H6.034a.25.25 0 0 1-.192-.41l1.966-2.36a.25.25 0 0 1 .384 0l1.966 2.36a.25.25 0 0 1-.192.41H8.75v6h-1.5V8.823c-.551.686-1.229 1.363-1.88 2.015l-.016.016-.708-.708c.757-.756 1.48-1.48 2.016-2.196q.377-.499.588-.95z\" />\n      </svg>\n    );\n  },\n);\n\nSignMergeLeftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignMergeLeftFill;\n"
  },
  {
    "path": "src/icons/sign-merge-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignMergeLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-merge-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.25 6v1q-.211.451-.588.95c-.537.716-1.259 1.44-2.016 2.196l.708.708.015-.016c.652-.652 1.33-1.33 1.881-2.015V12h1.5V6h1.216a.25.25 0 0 0 .192-.41L8.192 3.23a.25.25 0 0 0-.384 0L5.842 5.59a.25.25 0 0 0 .192.41z\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignMergeLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignMergeLeft;\n"
  },
  {
    "path": "src/icons/sign-merge-right-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignMergeRightFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-merge-right-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM8.75 6v1q.211.451.588.95c.537.716 1.259 1.44 2.016 2.196l-.708.708-.015-.016c-.652-.652-1.33-1.33-1.881-2.015V12h-1.5V6H6.034a.25.25 0 0 1-.192-.41l1.966-2.36a.25.25 0 0 1 .384 0l1.966 2.36a.25.25 0 0 1-.192.41z\" />\n      </svg>\n    );\n  },\n);\n\nSignMergeRightFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignMergeRightFill;\n"
  },
  {
    "path": "src/icons/sign-merge-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignMergeRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-merge-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.75 6v1q.211.451.588.95c.537.716 1.259 1.44 2.016 2.196l-.708.708-.015-.016c-.652-.652-1.33-1.33-1.881-2.015V12h-1.5V6H6.034a.25.25 0 0 1-.192-.41l1.966-2.36a.25.25 0 0 1 .384 0l1.966 2.36a.25.25 0 0 1-.192.41z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignMergeRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignMergeRight;\n"
  },
  {
    "path": "src/icons/sign-no-left-turn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoLeftTurnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-left-turn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 13.292A8 8 0 0 1 13.293 2L9.195 6.099A2.5 2.5 0 0 0 8.5 6H7V4.534a.25.25 0 0 0-.41-.192L4.23 6.308a.25.25 0 0 0 0 .384l2.36 1.966.026.02zm.708.708A8 8 0 0 0 14 2.707l-3.885 3.884C10.656 7.05 11 7.735 11 8.5V11h-1V8.5c0-.489-.234-.923-.596-1.197l-6.696 6.696Z\" />\n        <path d=\"M8.293 7 7 8.293V7z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoLeftTurnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoLeftTurnFill;\n"
  },
  {
    "path": "src/icons/sign-no-left-turn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoLeftTurn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-left-turn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 8a8 8 0 1 0 16 0A8 8 0 0 0 0 8m3.416 5.29 5.988-5.987c.362.274.596.708.596 1.197V11h1V8.5c0-.765-.344-1.45-.885-1.908l3.176-3.176a7 7 0 0 1-9.874 9.874Zm-.707-.706a7 7 0 0 1 9.874-9.874L9.196 6.097A2.5 2.5 0 0 0 8.5 6H7V4.534a.25.25 0 0 0-.41-.192L4.23 6.308a.25.25 0 0 0 0 .384l2.36 1.966.026.02zM8.293 7 7 8.293V7z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoLeftTurn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoLeftTurn;\n"
  },
  {
    "path": "src/icons/sign-no-parking-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoParkingFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-parking-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.292 14A8 8 0 0 1 2 2.707l3.5 3.5V12h1.283V9.164h1.674zm.708-.708-4.37-4.37C10.5 8.524 11 7.662 11 6.587c0-1.482-.955-2.584-2.538-2.584H5.5v.79L2.708 2.002A8 8 0 0 1 14 13.293Z\" />\n        <path d=\"M6.777 7.485v.59h.59zm1.949.535L6.777 6.07v-.966H8.27c.893 0 1.419.539 1.419 1.482 0 .769-.35 1.273-.963 1.433Z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoParkingFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoParkingFill;\n"
  },
  {
    "path": "src/icons/sign-no-parking.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoParking = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-parking', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m5.29-3.416L9.63 8.923C10.5 8.523 11 7.66 11 6.586c0-1.482-.955-2.584-2.538-2.584H5.5v.79L3.416 2.71a7 7 0 0 1 9.874 9.874m-.706.707A7 7 0 0 1 2.71 3.417l2.79 2.79V12h1.283V9.164h1.674zM8.726 8.019 6.777 6.07v-.966H8.27c.893 0 1.419.539 1.419 1.482 0 .769-.35 1.273-.963 1.433m-1.949-.534.59.59h-.59z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoParking.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoParking;\n"
  },
  {
    "path": "src/icons/sign-no-right-turn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoRightTurnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-right-turn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 13.292A8 8 0 0 0 2.707 2l4.097 4.098Q7.137 6.001 7.5 6H9V4.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L9.41 8.658l-.026.02zm-.708.708A8 8 0 0 1 2 2.707l3.885 3.884A2.5 2.5 0 0 0 5 8.5V11h1V8.5c0-.489.234-.923.596-1.197l6.696 6.696Z\" />\n        <path d=\"M7.707 7 9 8.293V7z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoRightTurnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoRightTurnFill;\n"
  },
  {
    "path": "src/icons/sign-no-right-turn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignNoRightTurn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-no-right-turn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.416 5.29L6.596 7.304A1.5 1.5 0 0 0 6 8.5V11H5V8.5c0-.765.344-1.45.885-1.908L2.709 3.416a7 7 0 0 0 9.874 9.874Zm.707-.706A7 7 0 0 0 3.417 2.71l3.388 3.388Q7.137 6.001 7.5 6H9V4.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L9.41 8.658l-.026.02zM7.707 7 9 8.293V7z\" />\n      </svg>\n    );\n  },\n);\n\nSignNoRightTurn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignNoRightTurn;\n"
  },
  {
    "path": "src/icons/sign-railroad-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignRailroadFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-railroad-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L4.224 3.162 8 6.94l3.777-3.777L9.049.435Zm3.274 7.425v-.862h.467c.28 0 .467.154.467.44 0 .28-.182.421-.475.421h-.459Z\" />\n        <path d=\"M12.838 4.223 9.06 8l3.777 3.777 2.727-2.728c.58-.58.58-1.519 0-2.098zm.03 2.361c.591 0 .935.334.935.844a.79.79 0 0 1-.485.748l.536 1.074h-.59l-.467-.994h-.473v.994h-.521V6.584h1.064Zm-1.091 6.254L8 9.06l-3.777 3.777 2.728 2.727c.58.58 1.519.58 2.098 0zm-8.953-5.84v.861h.46c.292 0 .474-.14.474-.421 0-.286-.188-.44-.467-.44z\" />\n        <path d=\"M3.162 11.777 6.94 8 3.162 4.223.435 6.951c-.58.58-.58 1.519 0 2.098zm-.86-5.193h1.065c.592 0 .936.334.936.844 0 .39-.242.654-.485.748l.536 1.074h-.59l-.467-.994h-.473v.994h-.521V6.584Z\" />\n      </svg>\n    );\n  },\n);\n\nSignRailroadFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignRailroadFill;\n"
  },
  {
    "path": "src/icons/sign-railroad.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignRailroad = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-railroad', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.303 6.584h1.064c.592 0 .936.334.936.844a.79.79 0 0 1-.485.748l.536 1.074h-.59l-.467-.994h-.473v.994h-.521zm.521.414v.861h.46c.292 0 .474-.14.474-.421 0-.286-.188-.44-.467-.44zm-8.771-.414h1.064c.592 0 .936.334.936.844 0 .39-.242.654-.485.748l.536 1.074h-.59l-.467-.994h-.473v.994h-.521zm.521.414v.861h.46c.292 0 .474-.14.474-.421 0-.286-.188-.44-.467-.44z\" />\n        <path d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L4.923 3.861 8 6.939l3.078-3.077L8.35 1.134Zm3.788 3.788L9.061 8l3.077 3.078 2.728-2.728a.495.495 0 0 0 0-.7zm-1.06 7.215L8 9.061l-3.077 3.077 2.727 2.728a.495.495 0 0 0 .7 0zm-7.216-1.06L6.939 8 3.862 4.923 1.134 7.65a.495.495 0 0 0 0 .7z\" />\n      </svg>\n    );\n  },\n);\n\nSignRailroad.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignRailroad;\n"
  },
  {
    "path": "src/icons/sign-stop-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignStopFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-stop-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.371 8.277v-.553c0-.827-.422-1.234-.987-1.234-.572 0-.99.407-.99 1.234v.553c0 .83.418 1.237.99 1.237.565 0 .987-.408.987-1.237m2.586-.24c.463 0 .735-.272.735-.744s-.272-.741-.735-.741h-.774v1.485z\" />\n        <path d=\"M4.893 0a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353L11.46.146A.5.5 0 0 0 11.107 0zM3.16 10.08c-.931 0-1.447-.493-1.494-1.132h.653c.065.346.396.583.891.583.524 0 .83-.246.83-.62 0-.303-.203-.467-.637-.572l-.656-.164c-.61-.147-.978-.51-.978-1.078 0-.706.597-1.184 1.444-1.184.853 0 1.386.475 1.436 1.087h-.645c-.064-.32-.352-.542-.797-.542-.472 0-.77.246-.77.6 0 .261.196.437.553.522l.654.161c.673.164 1.06.487 1.06 1.11 0 .736-.574 1.228-1.544 1.228Zm3.427-3.51V10h-.665V6.57H4.753V6h3.006v.568H6.587Zm4.458 1.16v.544c0 1.131-.636 1.805-1.661 1.805-1.026 0-1.664-.674-1.664-1.805V7.73c0-1.136.638-1.807 1.664-1.807s1.66.674 1.66 1.807ZM11.52 6h1.535c.82 0 1.316.55 1.316 1.292 0 .747-.501 1.289-1.321 1.289h-.865V10h-.665V6.001Z\" />\n      </svg>\n    );\n  },\n);\n\nSignStopFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignStopFill;\n"
  },
  {
    "path": "src/icons/sign-stop-lights-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignStopLightsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-stop-lights-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m1 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM6 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSignStopLightsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignStopLightsFill;\n"
  },
  {
    "path": "src/icons/sign-stop-lights.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignStopLights = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-stop-lights', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm2 2a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m1 2a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zm-1.4.7a.495.495 0 0 1 .7 0l6.516 6.515a.495.495 0 0 1 0 .7L8.35 14.866a.495.495 0 0 1-.7 0L1.134 8.35a.495.495 0 0 1 0-.7L7.65 1.134Z\" />\n      </svg>\n    );\n  },\n);\n\nSignStopLights.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignStopLights;\n"
  },
  {
    "path": "src/icons/sign-stop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignStop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-stop', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.16 10.08c-.931 0-1.447-.493-1.494-1.132h.653c.065.346.396.583.891.583.524 0 .83-.246.83-.62 0-.303-.203-.467-.637-.572l-.656-.164c-.61-.147-.978-.51-.978-1.078 0-.706.597-1.184 1.444-1.184.853 0 1.386.475 1.436 1.087h-.645c-.064-.32-.352-.542-.797-.542-.472 0-.77.246-.77.6 0 .261.196.437.553.522l.654.161c.673.164 1.06.487 1.06 1.11 0 .736-.574 1.228-1.544 1.228Zm3.427-3.51V10h-.665V6.57H4.753V6h3.006v.568H6.587Z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.045 7.73v.544c0 1.131-.636 1.805-1.661 1.805-1.026 0-1.664-.674-1.664-1.805V7.73c0-1.136.638-1.807 1.664-1.807s1.66.674 1.66 1.807Zm-.674.547v-.553c0-.827-.422-1.234-.987-1.234-.572 0-.99.407-.99 1.234v.553c0 .83.418 1.237.99 1.237.565 0 .987-.408.987-1.237m1.15-2.276h1.535c.82 0 1.316.55 1.316 1.292 0 .747-.501 1.289-1.321 1.289h-.865V10h-.665zm1.436 2.036c.463 0 .735-.272.735-.744s-.272-.741-.735-.741h-.774v1.485z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4.893 0a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353L11.46.146A.5.5 0 0 0 11.107 0zM1 5.1 5.1 1h5.8L15 5.1v5.8L10.9 15H5.1L1 10.9z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignStop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignStop;\n"
  },
  {
    "path": "src/icons/sign-turn-left-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnLeftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-left-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM7 8.466a.25.25 0 0 1-.41.192L4.23 6.692a.25.25 0 0 1 0-.384l2.36-1.966a.25.25 0 0 1 .41.192V6h1.5A2.5 2.5 0 0 1 11 8.5V11h-1V8.5A1.5 1.5 0 0 0 8.5 7H7z\" />\n      </svg>\n    );\n  },\n);\n\nSignTurnLeftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnLeftFill;\n"
  },
  {
    "path": "src/icons/sign-turn-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 8.5A2.5 2.5 0 0 0 8.5 6H7V4.534a.25.25 0 0 0-.41-.192L4.23 6.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 7 8.466V7h1.5A1.5 1.5 0 0 1 10 8.5V11h1z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignTurnLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnLeft;\n"
  },
  {
    "path": "src/icons/sign-turn-right-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnRightFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-right-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM9 8.466V7H7.5A1.5 1.5 0 0 0 6 8.5V11H5V8.5A2.5 2.5 0 0 1 7.5 6H9V4.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L9.41 8.658A.25.25 0 0 1 9 8.466\" />\n      </svg>\n    );\n  },\n);\n\nSignTurnRightFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnRightFill;\n"
  },
  {
    "path": "src/icons/sign-turn-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 8.5A2.5 2.5 0 0 1 7.5 6H9V4.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L9.41 8.658A.25.25 0 0 1 9 8.466V7H7.5A1.5 1.5 0 0 0 6 8.5V11H5z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignTurnRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnRight;\n"
  },
  {
    "path": "src/icons/sign-turn-slight-left-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnSlightLeftFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-slight-left-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L.436 6.95c-.58.58-.58 1.519 0 2.098l6.516 6.516c.58.58 1.519.58 2.098 0l6.516-6.516c.58-.58.58-1.519 0-2.098zM6.864 8.368a.25.25 0 0 1-.451-.039l-1.06-2.882a.25.25 0 0 1 .192-.333l3.026-.523a.25.25 0 0 1 .26.371l-.667 1.154.621.373A2.5 2.5 0 0 1 10 8.632V11H9V8.632a1.5 1.5 0 0 0-.728-1.286l-.607-.364-.8 1.386Z\" />\n      </svg>\n    );\n  },\n);\n\nSignTurnSlightLeftFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnSlightLeftFill;\n"
  },
  {
    "path": "src/icons/sign-turn-slight-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnSlightLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-slight-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.665 6.982-.8 1.386a.25.25 0 0 1-.451-.039l-1.06-2.882a.25.25 0 0 1 .192-.333l3.026-.523a.25.25 0 0 1 .26.371l-.667 1.154.621.373A2.5 2.5 0 0 1 10 8.632V11H9V8.632a1.5 1.5 0 0 0-.728-1.286z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignTurnSlightLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnSlightLeft;\n"
  },
  {
    "path": "src/icons/sign-turn-slight-right-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnSlightRightFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-slight-right-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.385 6.547.8 1.386a.25.25 0 0 0 .451-.039l1.06-2.882a.25.25 0 0 0-.192-.333l-3.026-.523a.25.25 0 0 0-.26.371l.667 1.154-.621.373A2.5 2.5 0 0 0 6 8.632V11h1V8.632a1.5 1.5 0 0 1 .728-1.286z\" />\n      </svg>\n    );\n  },\n);\n\nSignTurnSlightRightFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnSlightRightFill;\n"
  },
  {
    "path": "src/icons/sign-turn-slight-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignTurnSlightRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-turn-slight-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8.335 6.982.8 1.386a.25.25 0 0 0 .451-.039l1.06-2.882a.25.25 0 0 0-.192-.333l-3.026-.523a.25.25 0 0 0-.26.371l.667 1.154-.621.373A2.5 2.5 0 0 0 6 8.632V11h1V8.632a1.5 1.5 0 0 1 .728-1.286z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignTurnSlightRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignTurnSlightRight;\n"
  },
  {
    "path": "src/icons/sign-yield-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignYieldFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-yield-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.48 5.323h-.28v1.353h.28c.372 0 .54-.222.54-.674 0-.45-.169-.68-.54-.68Z\" />\n        <path d=\"M7.022 14.434a1.131 1.131 0 0 0 1.96 0l6.857-11.667c.457-.778-.092-1.767-.98-1.767H1.144c-.889 0-1.437.99-.98 1.767zM5.506 6.232V7H5.11v-.76L4.44 5h.44l.424.849h.016L5.748 5h.428zM6.628 5v2h-.396V5zm.684 1.676h.895V7H6.919V5h1.288v.324h-.895v.513h.842v.303h-.842zm1.521-.013h.848V7H8.437V5h.396zm.97.337V5h.73c.608 0 .895.364.895.995 0 .636-.291 1.005-.895 1.005z\" />\n      </svg>\n    );\n  },\n);\n\nSignYieldFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignYieldFill;\n"
  },
  {
    "path": "src/icons/sign-yield.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignYield = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sign-yield', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.506 6.232V7H5.11v-.76L4.44 5h.44l.424.849h.016L5.748 5h.428zM6.628 5v2h-.396V5zm.684 1.676h.895V7H6.919V5h1.288v.324h-.895v.513h.842v.303h-.842zm1.521-.013h.848V7H8.437V5h.396z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M9.804 7V5h.73c.607 0 .894.364.894.995 0 .636-.291 1.005-.895 1.005zm.676-1.677h-.28v1.353h.28c.372 0 .54-.222.54-.674 0-.45-.169-.68-.54-.68Z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.022 14.434a1.131 1.131 0 0 0 1.96 0l6.857-11.667c.457-.778-.092-1.767-.98-1.767H1.144c-.889 0-1.437.99-.98 1.767zm.98-.434a.13.13 0 0 1-.064-.016.15.15 0 0 1-.054-.057L1.027 2.26a.18.18 0 0 1-.002-.183.2.2 0 0 1 .054-.06A.1.1 0 0 1 1.145 2h13.713a.12.12 0 0 1 .066.017q.028.015.055.06a.18.18 0 0 1-.003.183L8.12 13.927a.15.15 0 0 1-.054.057.13.13 0 0 1-.063.016Z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSignYield.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignYield;\n"
  },
  {
    "path": "src/icons/signal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Signal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signal', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m6.08.234.179.727a7.3 7.3 0 0 0-2.01.832l-.383-.643A7.9 7.9 0 0 1 6.079.234zm3.84 0L9.742.96a7.3 7.3 0 0 1 2.01.832l.388-.643A8 8 0 0 0 9.92.234m-8.77 3.63a8 8 0 0 0-.916 2.215l.727.18a7.3 7.3 0 0 1 .832-2.01l-.643-.386zM.75 8a7 7 0 0 1 .081-1.086L.091 6.8a8 8 0 0 0 0 2.398l.74-.112A7 7 0 0 1 .75 8m11.384 6.848-.384-.64a7.2 7.2 0 0 1-2.007.831l.18.728a8 8 0 0 0 2.211-.919M15.251 8q0 .547-.082 1.086l.74.112a8 8 0 0 0 0-2.398l-.74.114q.082.54.082 1.086m.516 1.918-.728-.18a7.3 7.3 0 0 1-.832 2.012l.643.387a8 8 0 0 0 .917-2.219m-6.68 5.25c-.72.11-1.453.11-2.173 0l-.112.742a8 8 0 0 0 2.396 0l-.112-.741zm4.75-2.868a7.2 7.2 0 0 1-1.537 1.534l.446.605a8 8 0 0 0 1.695-1.689zM12.3 2.163c.587.432 1.105.95 1.537 1.537l.604-.45a8 8 0 0 0-1.69-1.691zM2.163 3.7A7.2 7.2 0 0 1 3.7 2.163l-.45-.604a8 8 0 0 0-1.691 1.69l.604.45zm12.688.163-.644.387c.377.623.658 1.3.832 2.007l.728-.18a8 8 0 0 0-.916-2.214M6.913.831a7.3 7.3 0 0 1 2.172 0l.112-.74a8 8 0 0 0-2.396 0zM2.547 14.64 1 15l.36-1.549-.729-.17-.361 1.548a.75.75 0 0 0 .9.902l1.548-.357zM.786 12.612l.732.168.25-1.073A7.2 7.2 0 0 1 .96 9.74l-.727.18a8 8 0 0 0 .736 1.902l-.184.79zm3.5 1.623-1.073.25.17.731.79-.184c.6.327 1.239.574 1.902.737l.18-.728a7.2 7.2 0 0 1-1.962-.811zM8 1.5a6.5 6.5 0 0 0-6.498 6.502 6.5 6.5 0 0 0 .998 3.455l-.625 2.668L4.54 13.5a6.502 6.502 0 0 0 6.93-11A6.5 6.5 0 0 0 8 1.5\" />\n      </svg>\n    );\n  },\n);\n\nSignal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Signal;\n"
  },
  {
    "path": "src/icons/signpost-2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Signpost2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost-2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293.707A1 1 0 0 0 7 1.414V2H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h5v1H2.5a1 1 0 0 0-.8.4L.725 8.7a.5.5 0 0 0 0 .6l.975 1.3a1 1 0 0 0 .8.4H7v5h2v-5h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H9V6h4.5a1 1 0 0 0 .8-.4l.975-1.3a.5.5 0 0 0 0-.6L14.3 2.4a1 1 0 0 0-.8-.4H9v-.586A1 1 0 0 0 7.293.707\" />\n      </svg>\n    );\n  },\n);\n\nSignpost2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Signpost2Fill;\n"
  },
  {
    "path": "src/icons/signpost-2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Signpost2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost-2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 1.414V2H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h5v1H2.5a1 1 0 0 0-.8.4L.725 8.7a.5.5 0 0 0 0 .6l.975 1.3a1 1 0 0 0 .8.4H7v5h2v-5h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H9V6h4.5a1 1 0 0 0 .8-.4l.975-1.3a.5.5 0 0 0 0-.6L14.3 2.4a1 1 0 0 0-.8-.4H9v-.586a1 1 0 0 0-2 0M13.5 3l.75 1-.75 1H2V3zm.5 5v2H2.5l-.75-1 .75-1z\" />\n      </svg>\n    );\n  },\n);\n\nSignpost2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Signpost2;\n"
  },
  {
    "path": "src/icons/signpost-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignpostFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.293.707A1 1 0 0 0 7 1.414V4H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5v6h2v-6h3.532a1 1 0 0 0 .768-.36l1.933-2.32a.5.5 0 0 0 0-.64L13.3 4.36a1 1 0 0 0-.768-.36H9V1.414A1 1 0 0 0 7.293.707\" />\n      </svg>\n    );\n  },\n);\n\nSignpostFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignpostFill;\n"
  },
  {
    "path": "src/icons/signpost-split-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignpostSplitFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost-split-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 16h2V6h5a1 1 0 0 0 .8-.4l.975-1.3a.5.5 0 0 0 0-.6L14.8 2.4A1 1 0 0 0 14 2H9v-.586a1 1 0 0 0-2 0V7H2a1 1 0 0 0-.8.4L.225 8.7a.5.5 0 0 0 0 .6l.975 1.3a1 1 0 0 0 .8.4h5z\" />\n      </svg>\n    );\n  },\n);\n\nSignpostSplitFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignpostSplitFill;\n"
  },
  {
    "path": "src/icons/signpost-split.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SignpostSplit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost-split', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 7V1.414a1 1 0 0 1 2 0V2h5a1 1 0 0 1 .8.4l.975 1.3a.5.5 0 0 1 0 .6L14.8 5.6a1 1 0 0 1-.8.4H9v10H7v-5H2a1 1 0 0 1-.8-.4L.225 9.3a.5.5 0 0 1 0-.6L1.2 7.4A1 1 0 0 1 2 7zm1 3V8H2l-.75 1L2 10zm0-5h6l.75-1L14 3H8z\" />\n      </svg>\n    );\n  },\n);\n\nSignpostSplit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SignpostSplit;\n"
  },
  {
    "path": "src/icons/signpost.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Signpost = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-signpost', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 1.414V4H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5v6h2v-6h3.532a1 1 0 0 0 .768-.36l1.933-2.32a.5.5 0 0 0 0-.64L13.3 4.36a1 1 0 0 0-.768-.36H9V1.414a1 1 0 0 0-2 0M12.532 5l1.666 2-1.666 2H2V5z\" />\n      </svg>\n    );\n  },\n);\n\nSignpost.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Signpost;\n"
  },
  {
    "path": "src/icons/sim-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SimFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sim-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 4.5a.5.5 0 0 1 .5-.5h2v2H5zM8.5 6V4h2a.5.5 0 0 1 .5.5V6zM5 7h6v2H5zm3.5 3H11v1.5a.5.5 0 0 1-.5.5h-2zm-1 0v2h-2a.5.5 0 0 1-.5-.5V10z\" />\n        <path d=\"M3.5 0A1.5 1.5 0 0 0 2 1.5v13A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5V3.414a1.5 1.5 0 0 0-.44-1.06L11.647.439A1.5 1.5 0 0 0 10.586 0zm2 3h5A1.5 1.5 0 0 1 12 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 11.5v-7A1.5 1.5 0 0 1 5.5 3\" />\n      </svg>\n    );\n  },\n);\n\nSimFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SimFill;\n"
  },
  {
    "path": "src/icons/sim-slash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SimSlashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sim-slash-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m11.646.44.897.896-1.703 1.703A1.5 1.5 0 0 0 10.5 3h-5A1.5 1.5 0 0 0 4 4.5v5.379l-2 2V1.5A1.5 1.5 0 0 1 3.5 0h7.086a1.5 1.5 0 0 1 1.06.44M8.5 5.378 9.879 4H8.5zM5 8.879 6.879 7H5zm6-1.758L9.121 9H11zm-3.5 3.5L6.121 12H7.5zM5.5 13q-.175 0-.34-.039L2.502 15.62c.265.236.615.38.998.38h9a1.5 1.5 0 0 0 1.5-1.5V4.121l-2 2V11.5a1.5 1.5 0 0 1-1.5 1.5zM5 4.5a.5.5 0 0 1 .5-.5h2v2H5zM8.5 10H11v1.5a.5.5 0 0 1-.5.5h-2zm6.354-8.146a.5.5 0 0 0-.708-.708l-13 13a.5.5 0 0 0 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nSimSlashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SimSlashFill;\n"
  },
  {
    "path": "src/icons/sim-slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SimSlash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sim-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m11.646.44.897.896-.707.707-.897-.897A.5.5 0 0 0 10.586 1H3.5a.5.5 0 0 0-.5.5v9.379l-1 1V1.5A1.5 1.5 0 0 1 3.5 0h7.086a1.5 1.5 0 0 1 1.06.44M10.5 3q.175 0 .34.039L9.879 4H8.5v1.379L6.879 7H5v1.879l-1 1V4.5A1.5 1.5 0 0 1 5.5 3zM12 6.121l-1 1V9H9.121L7.5 10.621V12H6.121l-.961.961q.165.039.34.039h5a1.5 1.5 0 0 0 1.5-1.5zM3.5 15a.5.5 0 0 1-.288-.091l-.71.71c.265.237.615.381.998.381h9a1.5 1.5 0 0 0 1.5-1.5V4.121l-1 1V14.5a.5.5 0 0 1-.5.5zm2-11a.5.5 0 0 0-.5.5V6h2.5V4zm5.5 6v1.5a.5.5 0 0 1-.5.5h-2v-2zm3.854-8.146a.5.5 0 0 0-.708-.708l-13 13a.5.5 0 0 0 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nSimSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SimSlash;\n"
  },
  {
    "path": "src/icons/sim.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sim = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sim', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1.5A1.5 1.5 0 0 1 3.5 0h7.086a1.5 1.5 0 0 1 1.06.44l1.915 1.914A1.5 1.5 0 0 1 14 3.414V14.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5zM3.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V3.414a.5.5 0 0 0-.146-.353l-1.915-1.915A.5.5 0 0 0 10.586 1z\" />\n        <path d=\"M5.5 4a.5.5 0 0 0-.5.5V6h2.5V4zm3 0v2H11V4.5a.5.5 0 0 0-.5-.5zM11 7H5v2h6zm0 3H8.5v2h2a.5.5 0 0 0 .5-.5zm-3.5 2v-2H5v1.5a.5.5 0 0 0 .5.5zM4 4.5A1.5 1.5 0 0 1 5.5 3h5A1.5 1.5 0 0 1 12 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 11.5z\" />\n      </svg>\n    );\n  },\n);\n\nSim.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sim;\n"
  },
  {
    "path": "src/icons/sina-weibo.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SinaWeibo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sina-weibo', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.878 1.093a4.23 4.23 0 0 1 4.031 1.305 4.22 4.22 0 0 1 .886 4.14v.001a.612.612 0 0 1-1.166-.377 3.01 3.01 0 0 0-3.495-3.873.611.611 0 1 1-.256-1.196M3.753 9.465c.548-1.11 1.972-1.74 3.233-1.411 1.304.338 1.971 1.568 1.437 2.764-.541 1.221-2.095 1.875-3.416 1.449-1.271-.411-1.812-1.67-1.254-2.802m2.658.567c.16.066.365-.009.458-.168.088-.16.03-.34-.129-.397-.156-.062-.353.013-.446.168-.09.154-.041.333.117.397m-1.607 1.314c.413.188.963.009 1.219-.4.252-.413.12-.883-.296-1.062-.41-.172-.94.005-1.194.402-.256.4-.135.874.271 1.06\" />\n        <path d=\"m12.014 7.238.005.001c.919.285 1.941.974 1.939 2.188 0 2.007-2.895 4.535-7.246 4.535C3.393 13.962 0 12.352 0 9.708c0-1.385.876-2.985 2.384-4.493C4.4 3.199 6.751 2.28 7.634 3.165c.39.392.427 1.065.177 1.87-.132.405.38.182.38.182 1.63-.682 3.051-.722 3.57.02.278.397.252.951-.004 1.594-.116.293.035.34.257.407m-10.4 3.101c.172 1.738 2.46 2.936 5.109 2.674 2.647-.26 4.656-1.883 4.482-3.623-.17-1.738-2.458-2.937-5.107-2.674-2.647.263-4.656 1.883-4.484 3.623m11.681-6.484a2.06 2.06 0 0 0-1.962-.634.526.526 0 1 0 .219 1.031 1.008 1.008 0 0 1 1.17 1.296.528.528 0 0 0 1.005.325 2.06 2.06 0 0 0-.432-2.018\" />\n      </svg>\n    );\n  },\n);\n\nSinaWeibo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SinaWeibo;\n"
  },
  {
    "path": "src/icons/skip-backward-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackwardBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m11.21-6.907L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.79-.407\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackwardBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackwardBtnFill;\n"
  },
  {
    "path": "src/icons/skip-backward-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackwardBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward-btn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.21 5.093A.5.5 0 0 1 12 5.5v5a.5.5 0 0 1-.79.407L8.5 8.972V10.5a.5.5 0 0 1-.79.407L5 8.972V10.5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0v1.528l2.71-1.935a.5.5 0 0 1 .79.407v1.528z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackwardBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackwardBtn;\n"
  },
  {
    "path": "src/icons/skip-backward-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackwardCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.79-2.907L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.79-.407\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackwardCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackwardCircleFill;\n"
  },
  {
    "path": "src/icons/skip-backward-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackwardCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M11.729 5.055a.5.5 0 0 0-.52.038L8.5 7.028V5.5a.5.5 0 0 0-.79-.407L5 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407V8.972l2.71 1.935A.5.5 0 0 0 12 10.5v-5a.5.5 0 0 0-.271-.445\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackwardCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackwardCircle;\n"
  },
  {
    "path": "src/icons/skip-backward-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 3.5A.5.5 0 0 0 0 4v8a.5.5 0 0 0 1 0V8.753l6.267 3.636c.54.313 1.233-.066 1.233-.697v-2.94l6.267 3.636c.54.314 1.233-.065 1.233-.696V4.308c0-.63-.693-1.01-1.233-.696L8.5 7.248v-2.94c0-.63-.692-1.01-1.233-.696L1 7.248V4a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackwardFill;\n"
  },
  {
    "path": "src/icons/skip-backward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipBackward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-backward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 3.5A.5.5 0 0 1 1 4v3.248l6.267-3.636c.52-.302 1.233.043 1.233.696v2.94l6.267-3.636c.52-.302 1.233.043 1.233.696v7.384c0 .653-.713.998-1.233.696L8.5 8.752v2.94c0 .653-.713.998-1.233.696L1 8.752V12a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5m7 1.133L1.696 8 7.5 11.367zm7.5 0L9.196 8 15 11.367z\" />\n      </svg>\n    );\n  },\n);\n\nSkipBackward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipBackward;\n"
  },
  {
    "path": "src/icons/skip-end-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEndBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m6.79-6.907A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407L9.5 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528z\" />\n      </svg>\n    );\n  },\n);\n\nSkipEndBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEndBtnFill;\n"
  },
  {
    "path": "src/icons/skip-end-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEndBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end-btn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.79 5.093 9.5 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .79-.407\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSkipEndBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEndBtn;\n"
  },
  {
    "path": "src/icons/skip-end-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEndCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407L9.5 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528z\" />\n      </svg>\n    );\n  },\n);\n\nSkipEndCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEndCircleFill;\n"
  },
  {
    "path": "src/icons/skip-end-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEndCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M6.271 5.055a.5.5 0 0 1 .52.038L9.5 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445\" />\n      </svg>\n    );\n  },\n);\n\nSkipEndCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEndCircle;\n"
  },
  {
    "path": "src/icons/skip-end-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEndFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.693 3.3 4 3.678 4 4.308v7.384c0 .63.692 1.01 1.233.697L11.5 8.753V12a.5.5 0 0 0 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nSkipEndFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEndFill;\n"
  },
  {
    "path": "src/icons/skip-end.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipEnd = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-end', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.713 3.31 4 3.655 4 4.308v7.384c0 .653.713.998 1.233.696L11.5 8.752V12a.5.5 0 0 0 1 0zM5 4.633 10.804 8 5 11.367z\" />\n      </svg>\n    );\n  },\n);\n\nSkipEnd.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipEnd;\n"
  },
  {
    "path": "src/icons/skip-forward-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForwardBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m4.79-6.907A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528z\" />\n      </svg>\n    );\n  },\n);\n\nSkipForwardBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForwardBtnFill;\n"
  },
  {
    "path": "src/icons/skip-forward-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForwardBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward-btn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.79 5.093A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSkipForwardBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForwardBtn;\n"
  },
  {
    "path": "src/icons/skip-forward-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForwardCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.79 5.093A.5.5 0 0 0 4 5.5v5a.5.5 0 0 0 .79.407L7.5 8.972V10.5a.5.5 0 0 0 .79.407L11 8.972V10.5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v1.528L8.29 5.093a.5.5 0 0 0-.79.407v1.528z\" />\n      </svg>\n    );\n  },\n);\n\nSkipForwardCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForwardCircleFill;\n"
  },
  {
    "path": "src/icons/skip-forward-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForwardCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.271 5.055a.5.5 0 0 1 .52.038L7.5 7.028V5.5a.5.5 0 0 1 .79-.407L11 7.028V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8.972l-2.71 1.935a.5.5 0 0 1-.79-.407V8.972l-2.71 1.935A.5.5 0 0 1 4 10.5v-5a.5.5 0 0 1 .271-.445\" />\n      </svg>\n    );\n  },\n);\n\nSkipForwardCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForwardCircle;\n"
  },
  {
    "path": "src/icons/skip-forward-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.5 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V8.753l-6.267 3.636c-.54.313-1.233-.066-1.233-.697v-2.94l-6.267 3.636C.693 12.703 0 12.324 0 11.693V4.308c0-.63.693-1.01 1.233-.696L7.5 7.248v-2.94c0-.63.693-1.01 1.233-.696L15 7.248V4a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSkipForwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForwardFill;\n"
  },
  {
    "path": "src/icons/skip-forward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipForward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-forward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.5 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V8.752l-6.267 3.636c-.52.302-1.233-.043-1.233-.696v-2.94l-6.267 3.636C.713 12.69 0 12.345 0 11.692V4.308c0-.653.713-.998 1.233-.696L7.5 7.248v-2.94c0-.653.713-.998 1.233-.696L15 7.248V4a.5.5 0 0 1 .5-.5M1 4.633v6.734L6.804 8zm7.5 0v6.734L14.304 8z\" />\n      </svg>\n    );\n  },\n);\n\nSkipForward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipForward;\n"
  },
  {
    "path": "src/icons/skip-start-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStartBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m9.71-6.907L7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.79-.407\" />\n      </svg>\n    );\n  },\n);\n\nSkipStartBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStartBtnFill;\n"
  },
  {
    "path": "src/icons/skip-start-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStartBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start-btn', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.71 5.093a.5.5 0 0 1 .79.407v5a.5.5 0 0 1-.79.407L7 8.972V10.5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0v1.528z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSkipStartBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStartBtn;\n"
  },
  {
    "path": "src/icons/skip-start-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStartCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M9.71 5.093 7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.79-.407\" />\n      </svg>\n    );\n  },\n);\n\nSkipStartCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStartCircleFill;\n"
  },
  {
    "path": "src/icons/skip-start-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStartCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M10.229 5.055a.5.5 0 0 0-.52.038L7 7.028V5.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0V8.972l2.71 1.935a.5.5 0 0 0 .79-.407v-5a.5.5 0 0 0-.271-.445\" />\n      </svg>\n    );\n  },\n);\n\nSkipStartCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStartCircle;\n"
  },
  {
    "path": "src/icons/skip-start-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.54-.313 1.232.066 1.232.696v7.384c0 .63-.692 1.01-1.232.697L5 8.753V12a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nSkipStartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStartFill;\n"
  },
  {
    "path": "src/icons/skip-start.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SkipStart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skip-start', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.52-.302 1.233.043 1.233.696v7.384c0 .653-.713.998-1.233.696L5 8.752V12a.5.5 0 0 1-1 0zm7.5.633L5.696 8l5.804 3.367z\" />\n      </svg>\n    );\n  },\n);\n\nSkipStart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SkipStart;\n"
  },
  {
    "path": "src/icons/skype.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Skype = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-skype', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.671 0c.88 0 1.733.247 2.468.702a7.42 7.42 0 0 1 6.02 2.118 7.37 7.37 0 0 1 2.167 5.215q0 .517-.072 1.026a4.66 4.66 0 0 1 .6 2.281 4.64 4.64 0 0 1-1.37 3.294A4.67 4.67 0 0 1 11.18 16c-.84 0-1.658-.226-2.37-.644a7.42 7.42 0 0 1-6.114-2.107A7.37 7.37 0 0 1 .529 8.035q0-.545.08-1.081a4.644 4.644 0 0 1 .76-5.59A4.68 4.68 0 0 1 4.67 0zm.447 7.01c.18.309.43.572.729.769a7 7 0 0 0 1.257.653q.737.308 1.145.523c.229.112.437.264.615.448.135.142.21.331.21.528a.87.87 0 0 1-.335.723c-.291.196-.64.289-.99.264a2.6 2.6 0 0 1-1.048-.206 11 11 0 0 1-.532-.253 1.3 1.3 0 0 0-.587-.15.72.72 0 0 0-.501.176.63.63 0 0 0-.195.491.8.8 0 0 0 .148.482 1.2 1.2 0 0 0 .456.354 5.1 5.1 0 0 0 2.212.419 4.6 4.6 0 0 0 1.624-.265 2.3 2.3 0 0 0 1.08-.801c.267-.39.402-.855.386-1.327a2.1 2.1 0 0 0-.279-1.101 2.5 2.5 0 0 0-.772-.792A7 7 0 0 0 8.486 7.3a1 1 0 0 0-.145-.058 18 18 0 0 1-1.013-.447 1.8 1.8 0 0 1-.54-.387.73.73 0 0 1-.2-.508.8.8 0 0 1 .385-.723 1.76 1.76 0 0 1 .968-.247c.26-.003.52.03.772.096q.412.119.802.293c.105.049.22.075.336.076a.6.6 0 0 0 .453-.19.7.7 0 0 0 .18-.496.72.72 0 0 0-.17-.476 1.4 1.4 0 0 0-.556-.354 3.7 3.7 0 0 0-.708-.183 6 6 0 0 0-1.022-.078 4.5 4.5 0 0 0-1.536.258 2.7 2.7 0 0 0-1.174.784 1.9 1.9 0 0 0-.45 1.287c-.01.37.076.736.25 1.063\" />\n      </svg>\n    );\n  },\n);\n\nSkype.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Skype;\n"
  },
  {
    "path": "src/icons/slack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Slack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.362 10.11c0 .926-.756 1.681-1.681 1.681S0 11.036 0 10.111.756 8.43 1.68 8.43h1.682zm.846 0c0-.924.756-1.68 1.681-1.68s1.681.756 1.681 1.68v4.21c0 .924-.756 1.68-1.68 1.68a1.685 1.685 0 0 1-1.682-1.68zM5.89 3.362c-.926 0-1.682-.756-1.682-1.681S4.964 0 5.89 0s1.68.756 1.68 1.68v1.682zm0 .846c.924 0 1.68.756 1.68 1.681S6.814 7.57 5.89 7.57H1.68C.757 7.57 0 6.814 0 5.89c0-.926.756-1.682 1.68-1.682zm6.749 1.682c0-.926.755-1.682 1.68-1.682S16 4.964 16 5.889s-.756 1.681-1.68 1.681h-1.681zm-.848 0c0 .924-.755 1.68-1.68 1.68A1.685 1.685 0 0 1 8.43 5.89V1.68C8.43.757 9.186 0 10.11 0c.926 0 1.681.756 1.681 1.68zm-1.681 6.748c.926 0 1.682.756 1.682 1.681S11.036 16 10.11 16s-1.681-.756-1.681-1.68v-1.682h1.68zm0-.847c-.924 0-1.68-.755-1.68-1.68s.756-1.681 1.68-1.681h4.21c.924 0 1.68.756 1.68 1.68 0 .926-.756 1.681-1.68 1.681z\" />\n      </svg>\n    );\n  },\n);\n\nSlack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Slack;\n"
  },
  {
    "path": "src/icons/slash-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SlashCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.646-2.646a.5.5 0 0 0-.708-.708l-6 6a.5.5 0 0 0 .708.708z\" />\n      </svg>\n    );\n  },\n);\n\nSlashCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SlashCircleFill;\n"
  },
  {
    "path": "src/icons/slash-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SlashCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M11.354 4.646a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nSlashCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SlashCircle;\n"
  },
  {
    "path": "src/icons/slash-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SlashLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M13.854 2.146a.5.5 0 0 1 0 .708l-11 11a.5.5 0 0 1-.708-.708l11-11a.5.5 0 0 1 .708 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nSlashLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SlashLg;\n"
  },
  {
    "path": "src/icons/slash-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SlashSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm9.354 5.354-6 6a.5.5 0 0 1-.708-.708l6-6a.5.5 0 0 1 .708.708\" />\n      </svg>\n    );\n  },\n);\n\nSlashSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SlashSquareFill;\n"
  },
  {
    "path": "src/icons/slash-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SlashSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash-square', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M11.354 4.646a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708l6-6a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nSlashSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SlashSquare;\n"
  },
  {
    "path": "src/icons/slash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Slash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-slash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.354 4.646a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708l6-6a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nSlash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Slash;\n"
  },
  {
    "path": "src/icons/sliders.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sliders = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sliders', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1z\"\n        />\n      </svg>\n    );\n  },\n);\n\nSliders.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sliders;\n"
  },
  {
    "path": "src/icons/sliders2-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sliders2Vertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sliders2-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 10.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 0-1H3V1.5a.5.5 0 0 0-1 0V10H.5a.5.5 0 0 0-.5.5M2.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5m3-6.5A.5.5 0 0 0 6 6h1.5v8.5a.5.5 0 0 0 1 0V6H10a.5.5 0 0 0 0-1H6a.5.5 0 0 0-.5.5M8 1a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2A.5.5 0 0 0 8 1m3 9.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 0-1H14V1.5a.5.5 0 0 0-1 0V10h-1.5a.5.5 0 0 0-.5.5m2.5 1.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nSliders2Vertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sliders2Vertical;\n"
  },
  {
    "path": "src/icons/sliders2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sliders2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sliders2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.5 1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4H1.5a.5.5 0 0 1 0-1H10V1.5a.5.5 0 0 1 .5-.5M12 3.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m-6.5 2A.5.5 0 0 1 6 6v1.5h8.5a.5.5 0 0 1 0 1H6V10a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5M1 8a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 1 8m9.5 2a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V13H1.5a.5.5 0 0 1 0-1H10v-1.5a.5.5 0 0 1 .5-.5m1.5 2.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nSliders2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sliders2;\n"
  },
  {
    "path": "src/icons/smartwatch.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Smartwatch = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-smartwatch', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 5a.5.5 0 0 0-1 0v3H6a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 .5-.5z\" />\n        <path d=\"M4 1.667v.383A2.5 2.5 0 0 0 2 4.5v7a2.5 2.5 0 0 0 2 2.45v.383C4 15.253 4.746 16 5.667 16h4.666c.92 0 1.667-.746 1.667-1.667v-.383a2.5 2.5 0 0 0 2-2.45V8h.5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5H14v-.5a2.5 2.5 0 0 0-2-2.45v-.383C12 .747 11.254 0 10.333 0H5.667C4.747 0 4 .746 4 1.667M4.5 3h7A1.5 1.5 0 0 1 13 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7A1.5 1.5 0 0 1 4.5 3\" />\n      </svg>\n    );\n  },\n);\n\nSmartwatch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Smartwatch;\n"
  },
  {
    "path": "src/icons/snapchat.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Snapchat = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-snapchat', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.943 11.526c-.111-.303-.323-.465-.564-.599a1 1 0 0 0-.123-.064l-.219-.111c-.752-.399-1.339-.902-1.746-1.498a3.4 3.4 0 0 1-.3-.531c-.034-.1-.032-.156-.008-.207a.3.3 0 0 1 .097-.1c.129-.086.262-.173.352-.231.162-.104.289-.187.371-.245.309-.216.525-.446.66-.702a1.4 1.4 0 0 0 .069-1.16c-.205-.538-.713-.872-1.329-.872a1.8 1.8 0 0 0-.487.065c.006-.368-.002-.757-.035-1.139-.116-1.344-.587-2.048-1.077-2.61a4.3 4.3 0 0 0-1.095-.881C9.764.216 8.92 0 7.999 0s-1.76.216-2.505.641c-.412.232-.782.53-1.097.883-.49.562-.96 1.267-1.077 2.61-.033.382-.04.772-.036 1.138a1.8 1.8 0 0 0-.487-.065c-.615 0-1.124.335-1.328.873a1.4 1.4 0 0 0 .067 1.161c.136.256.352.486.66.701.082.058.21.14.371.246l.339.221a.4.4 0 0 1 .109.11c.026.053.027.11-.012.217a3.4 3.4 0 0 1-.295.52c-.398.583-.968 1.077-1.696 1.472-.385.204-.786.34-.955.8-.128.348-.044.743.28 1.075q.18.189.409.31a4.4 4.4 0 0 0 1 .4.7.7 0 0 1 .202.09c.118.104.102.26.259.488q.12.178.296.3c.33.229.701.243 1.095.258.355.014.758.03 1.217.18.19.064.389.186.618.328.55.338 1.305.802 2.566.802 1.262 0 2.02-.466 2.576-.806.227-.14.424-.26.609-.321.46-.152.863-.168 1.218-.181.393-.015.764-.03 1.095-.258a1.14 1.14 0 0 0 .336-.368c.114-.192.11-.327.217-.42a.6.6 0 0 1 .19-.087 4.5 4.5 0 0 0 1.014-.404c.16-.087.306-.2.429-.336l.004-.005c.304-.325.38-.709.256-1.047m-1.121.602c-.684.378-1.139.337-1.493.565-.3.193-.122.61-.34.76-.269.186-1.061-.012-2.085.326-.845.279-1.384 1.082-2.903 1.082s-2.045-.801-2.904-1.084c-1.022-.338-1.816-.14-2.084-.325-.218-.15-.041-.568-.341-.761-.354-.228-.809-.187-1.492-.563-.436-.24-.189-.39-.044-.46 2.478-1.199 2.873-3.05 2.89-3.188.022-.166.045-.297-.138-.466-.177-.164-.962-.65-1.18-.802-.36-.252-.52-.503-.402-.812.082-.214.281-.295.49-.295a1 1 0 0 1 .197.022c.396.086.78.285 1.002.338q.04.01.082.011c.118 0 .16-.06.152-.195-.026-.433-.087-1.277-.019-2.066.094-1.084.444-1.622.859-2.097.2-.229 1.137-1.22 2.93-1.22 1.792 0 2.732.987 2.931 1.215.416.475.766 1.013.859 2.098.068.788.009 1.632-.019 2.065-.01.142.034.195.152.195a.4.4 0 0 0 .082-.01c.222-.054.607-.253 1.002-.338a1 1 0 0 1 .197-.023c.21 0 .409.082.49.295.117.309-.04.56-.401.812-.218.152-1.003.638-1.18.802-.184.169-.16.3-.139.466.018.14.413 1.991 2.89 3.189.147.073.394.222-.041.464\" />\n      </svg>\n    );\n  },\n);\n\nSnapchat.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Snapchat;\n"
  },
  {
    "path": "src/icons/snow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Snow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-snow', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a.5.5 0 0 1-.5-.5v-1.293l-.646.647a.5.5 0 0 1-.707-.708L7.5 12.793V8.866l-3.4 1.963-.496 1.85a.5.5 0 1 1-.966-.26l.237-.882-1.12.646a.5.5 0 0 1-.5-.866l1.12-.646-.884-.237a.5.5 0 1 1 .26-.966l1.848.495L7 8 3.6 6.037l-1.85.495a.5.5 0 0 1-.258-.966l.883-.237-1.12-.646a.5.5 0 1 1 .5-.866l1.12.646-.237-.883a.5.5 0 1 1 .966-.258l.495 1.849L7.5 7.134V3.207L6.147 1.854a.5.5 0 1 1 .707-.708l.646.647V.5a.5.5 0 1 1 1 0v1.293l.647-.647a.5.5 0 1 1 .707.708L8.5 3.207v3.927l3.4-1.963.496-1.85a.5.5 0 1 1 .966.26l-.236.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.883.237a.5.5 0 1 1-.26.966l-1.848-.495L9 8l3.4 1.963 1.849-.495a.5.5 0 0 1 .259.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.236.883a.5.5 0 1 1-.966.258l-.495-1.849-3.4-1.963v3.927l1.353 1.353a.5.5 0 0 1-.707.708l-.647-.647V15.5a.5.5 0 0 1-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nSnow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Snow;\n"
  },
  {
    "path": "src/icons/snow2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Snow2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-snow2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 16a.5.5 0 0 1-.5-.5v-1.293l-.646.647a.5.5 0 0 1-.707-.708L7.5 12.793v-1.086l-.646.647a.5.5 0 0 1-.707-.708L7.5 10.293V8.866l-1.236.713-.495 1.85a.5.5 0 1 1-.966-.26l.237-.882-.94.542-.496 1.85a.5.5 0 1 1-.966-.26l.237-.882-1.12.646a.5.5 0 0 1-.5-.866l1.12-.646-.884-.237a.5.5 0 1 1 .26-.966l1.848.495.94-.542-.882-.237a.5.5 0 1 1 .258-.966l1.85.495L7 8l-1.236-.713-1.849.495a.5.5 0 1 1-.258-.966l.883-.237-.94-.542-1.85.495a.5.5 0 0 1-.258-.966l.883-.237-1.12-.646a.5.5 0 1 1 .5-.866l1.12.646-.237-.883a.5.5 0 0 1 .966-.258l.495 1.849.94.542-.236-.883a.5.5 0 0 1 .966-.258l.495 1.849 1.236.713V5.707L6.147 4.354a.5.5 0 1 1 .707-.708l.646.647V3.207L6.147 1.854a.5.5 0 1 1 .707-.708l.646.647V.5a.5.5 0 0 1 1 0v1.293l.647-.647a.5.5 0 1 1 .707.708L8.5 3.207v1.086l.647-.647a.5.5 0 1 1 .707.708L8.5 5.707v1.427l1.236-.713.495-1.85a.5.5 0 1 1 .966.26l-.236.882.94-.542.495-1.85a.5.5 0 1 1 .966.26l-.236.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.883.237a.5.5 0 1 1-.26.966l-1.848-.495-.94.542.883.237a.5.5 0 1 1-.26.966l-1.848-.495L9 8l1.236.713 1.849-.495a.5.5 0 0 1 .259.966l-.883.237.94.542 1.849-.495a.5.5 0 0 1 .259.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.236.883a.5.5 0 1 1-.966.258l-.495-1.849-.94-.542.236.883a.5.5 0 0 1-.966.258L9.736 9.58 8.5 8.866v1.427l1.354 1.353a.5.5 0 0 1-.707.708l-.647-.647v1.086l1.354 1.353a.5.5 0 0 1-.707.708l-.647-.647V15.5a.5.5 0 0 1-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nSnow2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Snow2;\n"
  },
  {
    "path": "src/icons/snow3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Snow3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-snow3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 7.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1\" />\n        <path d=\"M8 16a.5.5 0 0 1-.5-.5v-1.293l-.646.647a.5.5 0 0 1-.707-.708L7.5 12.793v-1.51l-2.053-1.232-1.348.778-.495 1.85a.5.5 0 1 1-.966-.26l.237-.882-1.12.646a.5.5 0 0 1-.5-.866l1.12-.646-.883-.237a.5.5 0 1 1 .258-.966l1.85.495L5 9.155v-2.31l-1.4-.808-1.85.495a.5.5 0 1 1-.259-.966l.884-.237-1.12-.646a.5.5 0 0 1 .5-.866l1.12.646-.237-.883a.5.5 0 1 1 .966-.258l.495 1.849 1.348.778L7.5 4.717v-1.51L6.147 1.854a.5.5 0 1 1 .707-.708l.646.647V.5a.5.5 0 0 1 1 0v1.293l.647-.647a.5.5 0 1 1 .707.708L8.5 3.207v1.51l2.053 1.232 1.348-.778.495-1.85a.5.5 0 1 1 .966.26l-.236.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.883.237a.5.5 0 1 1-.26.966l-1.848-.495-1.4.808v2.31l1.4.808 1.849-.495a.5.5 0 1 1 .259.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.236.883a.5.5 0 1 1-.966.258l-.495-1.849-1.348-.778L8.5 11.283v1.51l1.354 1.353a.5.5 0 0 1-.707.708l-.647-.647V15.5a.5.5 0 0 1-.5.5m2-6.783V6.783l-2-1.2-2 1.2v2.434l2 1.2z\" />\n      </svg>\n    );\n  },\n);\n\nSnow3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Snow3;\n"
  },
  {
    "path": "src/icons/sort-alpha-down-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortAlphaDownAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-alpha-down-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.96 7H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.082 12.629 9.664 14H8.598l1.789-5.332h1.234L13.402 14h-1.12l-.419-1.371zm1.57-.785L11 9.688h-.047l-.652 2.156z\"\n        />\n        <path d=\"M4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293z\" />\n      </svg>\n    );\n  },\n);\n\nSortAlphaDownAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortAlphaDownAlt;\n"
  },
  {
    "path": "src/icons/sort-alpha-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortAlphaDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-alpha-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.082 5.629 9.664 7H8.598l1.789-5.332h1.234L13.402 7h-1.12l-.419-1.371zm1.57-.785L11 2.687h-.047l-.652 2.157z\"\n        />\n        <path d=\"M12.96 14H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645zM4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293z\" />\n      </svg>\n    );\n  },\n);\n\nSortAlphaDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortAlphaDown;\n"
  },
  {
    "path": "src/icons/sort-alpha-up-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortAlphaUpAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-alpha-up-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.96 7H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.082 12.629 9.664 14H8.598l1.789-5.332h1.234L13.402 14h-1.12l-.419-1.371zm1.57-.785L11 9.688h-.047l-.652 2.156z\"\n        />\n        <path d=\"M4.5 13.5a.5.5 0 0 1-1 0V3.707L2.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L4.5 3.707z\" />\n      </svg>\n    );\n  },\n);\n\nSortAlphaUpAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortAlphaUpAlt;\n"
  },
  {
    "path": "src/icons/sort-alpha-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortAlphaUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-alpha-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.082 5.629 9.664 7H8.598l1.789-5.332h1.234L13.402 7h-1.12l-.419-1.371zm1.57-.785L11 2.687h-.047l-.652 2.157z\"\n        />\n        <path d=\"M12.96 14H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645zm-8.46-.5a.5.5 0 0 1-1 0V3.707L2.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L4.5 3.707z\" />\n      </svg>\n    );\n  },\n);\n\nSortAlphaUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortAlphaUp;\n"
  },
  {
    "path": "src/icons/sort-down-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortDownAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-down-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 3.5a.5.5 0 0 0-1 0v8.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L3.5 12.293zm4 .5a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1zm0 3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1zm0 3a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1zM7 12.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nSortDownAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortDownAlt;\n"
  },
  {
    "path": "src/icons/sort-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-down', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 2.5a.5.5 0 0 0-1 0v8.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L3.5 11.293zm3.5 1a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5M7.5 6a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nSortDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortDown;\n"
  },
  {
    "path": "src/icons/sort-numeric-down-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortNumericDownAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-numeric-down-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.36 7.098c-1.137 0-1.708-.657-1.762-1.278h1.004c.058.223.343.45.773.45.824 0 1.164-.829 1.133-1.856h-.059c-.148.39-.57.742-1.261.742-.91 0-1.72-.613-1.72-1.758 0-1.148.848-1.836 1.973-1.836 1.09 0 2.063.637 2.063 2.688 0 1.867-.723 2.848-2.145 2.848zm.062-2.735c.504 0 .933-.336.933-.972 0-.633-.398-1.008-.94-1.008-.52 0-.927.375-.927 1 0 .64.418.98.934.98\"\n        />\n        <path d=\"M12.438 8.668V14H11.39V9.684h-.051l-1.211.859v-.969l1.262-.906h1.046zM4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293z\" />\n      </svg>\n    );\n  },\n);\n\nSortNumericDownAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortNumericDownAlt;\n"
  },
  {
    "path": "src/icons/sort-numeric-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortNumericDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-numeric-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.438 1.668V7H11.39V2.684h-.051l-1.211.859v-.969l1.262-.906h1.046z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.36 14.098c-1.137 0-1.708-.657-1.762-1.278h1.004c.058.223.343.45.773.45.824 0 1.164-.829 1.133-1.856h-.059c-.148.39-.57.742-1.261.742-.91 0-1.72-.613-1.72-1.758 0-1.148.848-1.835 1.973-1.835 1.09 0 2.063.636 2.063 2.687 0 1.867-.723 2.848-2.145 2.848zm.062-2.735c.504 0 .933-.336.933-.972 0-.633-.398-1.008-.94-1.008-.52 0-.927.375-.927 1 0 .64.418.98.934.98\"\n        />\n        <path d=\"M4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293z\" />\n      </svg>\n    );\n  },\n);\n\nSortNumericDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortNumericDown;\n"
  },
  {
    "path": "src/icons/sort-numeric-up-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortNumericUpAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-numeric-up-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.36 7.098c-1.137 0-1.708-.657-1.762-1.278h1.004c.058.223.343.45.773.45.824 0 1.164-.829 1.133-1.856h-.059c-.148.39-.57.742-1.261.742-.91 0-1.72-.613-1.72-1.758 0-1.148.848-1.836 1.973-1.836 1.09 0 2.063.637 2.063 2.688 0 1.867-.723 2.848-2.145 2.848zm.062-2.735c.504 0 .933-.336.933-.972 0-.633-.398-1.008-.94-1.008-.52 0-.927.375-.927 1 0 .64.418.98.934.98\"\n        />\n        <path d=\"M12.438 8.668V14H11.39V9.684h-.051l-1.211.859v-.969l1.262-.906h1.046zM4.5 13.5a.5.5 0 0 1-1 0V3.707L2.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L4.5 3.707z\" />\n      </svg>\n    );\n  },\n);\n\nSortNumericUpAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortNumericUpAlt;\n"
  },
  {
    "path": "src/icons/sort-numeric-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortNumericUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-numeric-up', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.438 1.668V7H11.39V2.684h-.051l-1.211.859v-.969l1.262-.906h1.046z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.36 14.098c-1.137 0-1.708-.657-1.762-1.278h1.004c.058.223.343.45.773.45.824 0 1.164-.829 1.133-1.856h-.059c-.148.39-.57.742-1.261.742-.91 0-1.72-.613-1.72-1.758 0-1.148.848-1.835 1.973-1.835 1.09 0 2.063.636 2.063 2.687 0 1.867-.723 2.848-2.145 2.848zm.062-2.735c.504 0 .933-.336.933-.972 0-.633-.398-1.008-.94-1.008-.52 0-.927.375-.927 1 0 .64.418.98.934.98\"\n        />\n        <path d=\"M4.5 13.5a.5.5 0 0 1-1 0V3.707L2.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L4.5 3.707z\" />\n      </svg>\n    );\n  },\n);\n\nSortNumericUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortNumericUp;\n"
  },
  {
    "path": "src/icons/sort-up-alt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortUpAlt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-up-alt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 13.5a.5.5 0 0 1-1 0V4.707L1.354 5.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L3.5 4.707zm4-9.5a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1zm0 3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1zm0 3a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1zM7 12.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nSortUpAlt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortUpAlt;\n"
  },
  {
    "path": "src/icons/sort-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SortUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sort-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 12.5a.5.5 0 0 1-1 0V3.707L1.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.5.5 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L3.5 3.707zm3.5-9a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5M7.5 6a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nSortUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SortUp;\n"
  },
  {
    "path": "src/icons/soundwave.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Soundwave = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-soundwave', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.5 2a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-1 0v-11a.5.5 0 0 1 .5-.5m-2 2a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5m4 0a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5m-6 1.5A.5.5 0 0 1 5 6v4a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m8 0a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m-10 1A.5.5 0 0 1 3 7v2a.5.5 0 0 1-1 0V7a.5.5 0 0 1 .5-.5m12 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0V7a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nSoundwave.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Soundwave;\n"
  },
  {
    "path": "src/icons/sourceforge.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sourceforge = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sourceforge', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.13 8.43c0-2.604-.929-3.79-1.42-4.24a.14.14 0 0 0-.232.123c.095 1.472-1.762 1.84-1.762 4.144v.013c0 1.404 1.065 2.55 2.376 2.55s2.377-1.146 2.377-2.55v-.013c0-.655-.246-1.282-.492-1.745-.055-.096-.191-.055-.178.027.451 1.99-.669 3.217-.669 1.69Z\" />\n        <path d=\"M6.303 13.923a.25.25 0 0 1-.164-.068L.061 7.789c-.081-.082-.081-.232 0-.327l6.42-6.407A.3.3 0 0 1 6.63 1h1.844c.109 0 .177.068.204.136a.22.22 0 0 1-.054.246L2.602 7.407a.304.304 0 0 0 0 .436l4.766 4.771c.082.082.082.232 0 .328l-.915.927a.3.3 0 0 1-.15.054m1.216 1.063a.22.22 0 0 1-.15-.382l6.036-6.025a.32.32 0 0 0 .096-.218.27.27 0 0 0-.096-.218l-4.78-4.771c-.082-.082-.082-.232 0-.327l.929-.927a.23.23 0 0 1 .163-.068c.069 0 .11.04.15.081l6.065 6.067c.04.04.068.095.068.163a.23.23 0 0 1-.068.164l-6.42 6.407A.23.23 0 0 1 9.35 15H7.52z\" />\n      </svg>\n    );\n  },\n);\n\nSourceforge.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sourceforge;\n"
  },
  {
    "path": "src/icons/speaker-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SpeakerFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-speaker-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-2.5 6.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0\" />\n        <path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0M8 7a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7\" />\n      </svg>\n    );\n  },\n);\n\nSpeakerFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SpeakerFill;\n"
  },
  {
    "path": "src/icons/speaker.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Speaker = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-speaker', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 4.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5M8 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4m0 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 1.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0\" />\n      </svg>\n    );\n  },\n);\n\nSpeaker.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Speaker;\n"
  },
  {
    "path": "src/icons/speedometer.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Speedometer = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-speedometer', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 2a.5.5 0 0 1 .5.5V4a.5.5 0 0 1-1 0V2.5A.5.5 0 0 1 8 2M3.732 3.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707M2 8a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.39.39 0 0 0-.527-.02L7.547 7.31A.91.91 0 1 0 8.85 8.569l3.434-4.297a.39.39 0 0 0-.029-.518z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.664 15.889A8 8 0 1 1 9.336.11a8 8 0 0 1-2.672 15.78zm-4.665-4.283A11.95 11.95 0 0 1 8 10c2.186 0 4.236.585 6.001 1.606a7 7 0 1 0-12.002 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nSpeedometer.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Speedometer;\n"
  },
  {
    "path": "src/icons/speedometer2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Speedometer2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-speedometer2', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4M3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707M2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.39.39 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.39.39 0 0 0-.029-.518z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A8 8 0 0 1 0 10m8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3\"\n        />\n      </svg>\n    );\n  },\n);\n\nSpeedometer2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Speedometer2;\n"
  },
  {
    "path": "src/icons/spellcheck.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Spellcheck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-spellcheck', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.217 11.068c1.216 0 1.948-.869 1.948-2.31v-.702c0-1.44-.727-2.305-1.929-2.305-.742 0-1.328.347-1.499.889h-.063V3.983h-1.29V11h1.27v-.791h.064c.21.532.776.86 1.499.86zm-.43-1.025c-.66 0-1.113-.518-1.113-1.28V8.12c0-.825.42-1.343 1.098-1.343.684 0 1.075.518 1.075 1.416v.45c0 .888-.386 1.401-1.06 1.401zm-5.583 1.035c.767 0 1.201-.356 1.406-.737h.059V11h1.216V7.519c0-1.314-.947-1.783-2.11-1.783C1.355 5.736.75 6.42.69 7.27h1.216c.064-.323.313-.552.84-.552s.864.249.864.771v.464H2.346C1.145 7.953.5 8.568.5 9.496c0 .977.693 1.582 1.704 1.582m.42-.947c-.44 0-.845-.235-.845-.718 0-.395.269-.684.84-.684h.991v.538c0 .503-.444.864-.986.864m8.897.567c-.577-.4-.9-1.088-.9-1.983v-.65c0-1.42.894-2.338 2.305-2.338 1.352 0 2.119.82 2.139 1.806h-1.187c-.04-.351-.283-.776-.918-.776-.674 0-1.045.517-1.045 1.328v.625c0 .468.121.834.343 1.067z\" />\n        <path d=\"M14.469 9.414a.75.75 0 0 1 .117 1.055l-4 5a.75.75 0 0 1-1.116.061l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.908 1.907 3.476-4.346a.75.75 0 0 1 1.055-.117\" />\n      </svg>\n    );\n  },\n);\n\nSpellcheck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Spellcheck;\n"
  },
  {
    "path": "src/icons/spotify.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Spotify = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-spotify', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.669 11.538a.5.5 0 0 1-.686.165c-1.879-1.147-4.243-1.407-7.028-.77a.499.499 0 0 1-.222-.973c3.048-.696 5.662-.397 7.77.892a.5.5 0 0 1 .166.686m.979-2.178a.624.624 0 0 1-.858.205c-2.15-1.321-5.428-1.704-7.972-.932a.625.625 0 0 1-.362-1.194c2.905-.881 6.517-.454 8.986 1.063a.624.624 0 0 1 .206.858m.084-2.268C10.154 5.56 5.9 5.419 3.438 6.166a.748.748 0 1 1-.434-1.432c2.825-.857 7.523-.692 10.492 1.07a.747.747 0 1 1-.764 1.288\" />\n      </svg>\n    );\n  },\n);\n\nSpotify.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Spotify;\n"
  },
  {
    "path": "src/icons/square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SquareFill;\n"
  },
  {
    "path": "src/icons/square-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SquareHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-square-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15V1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1zm6 1a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2z\" />\n      </svg>\n    );\n  },\n);\n\nSquareHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SquareHalf;\n"
  },
  {
    "path": "src/icons/square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Square = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Square;\n"
  },
  {
    "path": "src/icons/stack-overflow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StackOverflow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stack-overflow', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.412 14.572V10.29h1.428V16H1v-5.71h1.428v4.282z\" />\n        <path d=\"M3.857 13.145h7.137v-1.428H3.857zM10.254 0 9.108.852l4.26 5.727 1.146-.852zm-3.54 3.377 5.484 4.567.913-1.097L7.627 2.28l-.914 1.097zM4.922 6.55l6.47 3.013.603-1.294-6.47-3.013zm-.925 3.344 6.985 1.469.294-1.398-6.985-1.468z\" />\n      </svg>\n    );\n  },\n);\n\nStackOverflow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StackOverflow;\n"
  },
  {
    "path": "src/icons/stack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.6.6 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.6.6 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.6.6 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535z\" />\n        <path d=\"m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.6.6 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0z\" />\n      </svg>\n    );\n  },\n);\n\nStack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stack;\n"
  },
  {
    "path": "src/icons/star-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StarFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-star-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z\" />\n      </svg>\n    );\n  },\n);\n\nStarFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StarFill;\n"
  },
  {
    "path": "src/icons/star-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StarHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-star-half', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.354 5.119 7.538.792A.52.52 0 0 1 8 .5c.183 0 .366.097.465.292l2.184 4.327 4.898.696A.54.54 0 0 1 16 6.32a.55.55 0 0 1-.17.445l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256a.5.5 0 0 1-.146.05c-.342.06-.668-.254-.6-.642l.83-4.73L.173 6.765a.55.55 0 0 1-.172-.403.6.6 0 0 1 .085-.302.51.51 0 0 1 .37-.245zM8 12.027a.5.5 0 0 1 .232.056l3.686 1.894-.694-3.957a.56.56 0 0 1 .162-.505l2.907-2.77-4.052-.576a.53.53 0 0 1-.393-.288L8.001 2.223 8 2.226z\" />\n      </svg>\n    );\n  },\n);\n\nStarHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StarHalf;\n"
  },
  {
    "path": "src/icons/star.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Star = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-star', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.522-3.356c.33-.314.16-.888-.282-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767-3.686 1.894.694-3.957a.56.56 0 0 0-.163-.505L1.71 6.745l4.052-.576a.53.53 0 0 0 .393-.288L8 2.223l1.847 3.658a.53.53 0 0 0 .393.288l4.052.575-2.906 2.77a.56.56 0 0 0-.163.506l.694 3.957-3.686-1.894a.5.5 0 0 0-.461 0z\" />\n      </svg>\n    );\n  },\n);\n\nStar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Star;\n"
  },
  {
    "path": "src/icons/stars.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stars = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stars', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.657 6.247c.11-.33.576-.33.686 0l.645 1.937a2.89 2.89 0 0 0 1.829 1.828l1.936.645c.33.11.33.576 0 .686l-1.937.645a2.89 2.89 0 0 0-1.828 1.829l-.645 1.936a.361.361 0 0 1-.686 0l-.645-1.937a2.89 2.89 0 0 0-1.828-1.828l-1.937-.645a.361.361 0 0 1 0-.686l1.937-.645a2.89 2.89 0 0 0 1.828-1.828zM3.794 1.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387A1.73 1.73 0 0 0 4.593 5.69l-.387 1.162a.217.217 0 0 1-.412 0L3.407 5.69A1.73 1.73 0 0 0 2.31 4.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387A1.73 1.73 0 0 0 3.407 2.31zM10.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.16 1.16 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.16 1.16 0 0 0-.732-.732L9.1 2.137a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732z\" />\n      </svg>\n    );\n  },\n);\n\nStars.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stars;\n"
  },
  {
    "path": "src/icons/steam.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Steam = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-steam', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.329 10.333A8.01 8.01 0 0 0 7.99 16C12.414 16 16 12.418 16 8s-3.586-8-8.009-8A8.006 8.006 0 0 0 0 7.468l.003.006 4.304 1.769A2.2 2.2 0 0 1 5.62 8.88l1.96-2.844-.001-.04a3.046 3.046 0 0 1 3.042-3.043 3.046 3.046 0 0 1 3.042 3.043 3.047 3.047 0 0 1-3.111 3.044l-2.804 2a2.223 2.223 0 0 1-3.075 2.11 2.22 2.22 0 0 1-1.312-1.568L.33 10.333Z\" />\n        <path d=\"M4.868 12.683a1.715 1.715 0 0 0 1.318-3.165 1.7 1.7 0 0 0-1.263-.02l1.023.424a1.261 1.261 0 1 1-.97 2.33l-.99-.41a1.7 1.7 0 0 0 .882.84Zm3.726-6.687a2.03 2.03 0 0 0 2.027 2.029 2.03 2.03 0 0 0 2.027-2.029 2.03 2.03 0 0 0-2.027-2.027 2.03 2.03 0 0 0-2.027 2.027m2.03-1.527a1.524 1.524 0 1 1-.002 3.048 1.524 1.524 0 0 1 .002-3.048\" />\n      </svg>\n    );\n  },\n);\n\nSteam.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Steam;\n"
  },
  {
    "path": "src/icons/stickies-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StickiesFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stickies-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 1.5V13a1 1 0 0 0 1 1V1.5a.5.5 0 0 1 .5-.5H14a1 1 0 0 0-1-1H1.5A1.5 1.5 0 0 0 0 1.5\" />\n        <path d=\"M3.5 2A1.5 1.5 0 0 0 2 3.5v11A1.5 1.5 0 0 0 3.5 16h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 16 9.586V3.5A1.5 1.5 0 0 0 14.5 2zm6 8.5a1 1 0 0 1 1-1h4.396a.25.25 0 0 1 .177.427l-5.146 5.146a.25.25 0 0 1-.427-.177z\" />\n      </svg>\n    );\n  },\n);\n\nStickiesFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StickiesFill;\n"
  },
  {
    "path": "src/icons/stickies.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stickies = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stickies', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 0A1.5 1.5 0 0 0 0 1.5V13a1 1 0 0 0 1 1V1.5a.5.5 0 0 1 .5-.5H14a1 1 0 0 0-1-1z\" />\n        <path d=\"M3.5 2A1.5 1.5 0 0 0 2 3.5v11A1.5 1.5 0 0 0 3.5 16h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 16 9.586V3.5A1.5 1.5 0 0 0 14.5 2zM3 3.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5V9h-4.5A1.5 1.5 0 0 0 9 10.5V15H3.5a.5.5 0 0 1-.5-.5zm7 11.293V10.5a.5.5 0 0 1 .5-.5h4.293z\" />\n      </svg>\n    );\n  },\n);\n\nStickies.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stickies;\n"
  },
  {
    "path": "src/icons/sticky-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StickyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sticky-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 1A1.5 1.5 0 0 0 1 2.5v11A1.5 1.5 0 0 0 2.5 15h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 15 8.586V2.5A1.5 1.5 0 0 0 13.5 1zm6 8.5a1 1 0 0 1 1-1h4.396a.25.25 0 0 1 .177.427l-5.146 5.146a.25.25 0 0 1-.427-.177z\" />\n      </svg>\n    );\n  },\n);\n\nStickyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StickyFill;\n"
  },
  {
    "path": "src/icons/sticky.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sticky = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sticky', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 1A1.5 1.5 0 0 0 1 2.5v11A1.5 1.5 0 0 0 2.5 15h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 15 8.586V2.5A1.5 1.5 0 0 0 13.5 1zM2 2.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5V8H9.5A1.5 1.5 0 0 0 8 9.5V14H2.5a.5.5 0 0 1-.5-.5zm7 11.293V9.5a.5.5 0 0 1 .5-.5h4.293z\" />\n      </svg>\n    );\n  },\n);\n\nSticky.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sticky;\n"
  },
  {
    "path": "src/icons/stop-btn-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopBtnFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop-btn-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 12V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2m6.5-7A1.5 1.5 0 0 0 5 6.5v3A1.5 1.5 0 0 0 6.5 11h3A1.5 1.5 0 0 0 11 9.5v-3A1.5 1.5 0 0 0 9.5 5z\" />\n      </svg>\n    );\n  },\n);\n\nStopBtnFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopBtnFill;\n"
  },
  {
    "path": "src/icons/stop-btn.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopBtn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop-btn', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 5A1.5 1.5 0 0 0 5 6.5v3A1.5 1.5 0 0 0 6.5 11h3A1.5 1.5 0 0 0 11 9.5v-3A1.5 1.5 0 0 0 9.5 5z\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nStopBtn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopBtn;\n"
  },
  {
    "path": "src/icons/stop-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.5 5A1.5 1.5 0 0 0 5 6.5v3A1.5 1.5 0 0 0 6.5 11h3A1.5 1.5 0 0 0 11 9.5v-3A1.5 1.5 0 0 0 9.5 5z\" />\n      </svg>\n    );\n  },\n);\n\nStopCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopCircleFill;\n"
  },
  {
    "path": "src/icons/stop-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M5 6.5A1.5 1.5 0 0 1 6.5 5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5z\" />\n      </svg>\n    );\n  },\n);\n\nStopCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopCircle;\n"
  },
  {
    "path": "src/icons/stop-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 3.5h6A1.5 1.5 0 0 1 12.5 5v6a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 11V5A1.5 1.5 0 0 1 5 3.5\" />\n      </svg>\n    );\n  },\n);\n\nStopFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopFill;\n"
  },
  {
    "path": "src/icons/stop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stop', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 5A1.5 1.5 0 0 1 5 3.5h6A1.5 1.5 0 0 1 12.5 5v6a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 11zM5 4.5a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5V5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nStop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stop;\n"
  },
  {
    "path": "src/icons/stoplights-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StoplightsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stoplights-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 0a2 2 0 0 0-2 2H2c.167.5.8 1.6 2 2v2H2c.167.5.8 1.6 2 2v2H2c.167.5.8 1.6 2 2v1a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-1c1.2-.4 1.833-1.5 2-2h-2V8c1.2-.4 1.833-1.5 2-2h-2V4c1.2-.4 1.833-1.5 2-2h-2a2 2 0 0 0-2-2zm3.5 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M8 13a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\"\n        />\n      </svg>\n    );\n  },\n);\n\nStoplightsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StoplightsFill;\n"
  },
  {
    "path": "src/icons/stoplights.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stoplights = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stoplights', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m0 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m1.5 2.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n        <path d=\"M4 2a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2h2c-.167.5-.8 1.6-2 2v2h2c-.167.5-.8 1.6-2 2v2h2c-.167.5-.8 1.6-2 2v1a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1c-1.2-.4-1.833-1.5-2-2h2V8c-1.2-.4-1.833-1.5-2-2h2V4c-1.2-.4-1.833-1.5-2-2zm2-1a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nStoplights.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stoplights;\n"
  },
  {
    "path": "src/icons/stopwatch-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst StopwatchFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stopwatch-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0a.5.5 0 0 0 0 1H7v1.07A7.001 7.001 0 0 0 8 16a7 7 0 0 0 5.29-11.584l.013-.012.354-.354.353.354a.5.5 0 1 0 .707-.707l-1.414-1.415a.5.5 0 1 0-.707.707l.354.354-.354.354-.012.012A6.97 6.97 0 0 0 9 2.071V1h.5a.5.5 0 0 0 0-1zm2 5.6V9a.5.5 0 0 1-.5.5H4.5a.5.5 0 0 1 0-1h3V5.6a.5.5 0 1 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nStopwatchFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default StopwatchFill;\n"
  },
  {
    "path": "src/icons/stopwatch.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stopwatch = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stopwatch', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5.6a.5.5 0 1 0-1 0v2.9h-3a.5.5 0 0 0 0 1H8a.5.5 0 0 0 .5-.5z\" />\n        <path d=\"M6.5 1A.5.5 0 0 1 7 .5h2a.5.5 0 0 1 0 1v.57c1.36.196 2.594.78 3.584 1.64l.012-.013.354-.354-.354-.353a.5.5 0 0 1 .707-.708l1.414 1.415a.5.5 0 1 1-.707.707l-.353-.354-.354.354-.013.012A7 7 0 1 1 7 2.071V1.5a.5.5 0 0 1-.5-.5M8 3a6 6 0 1 0 .001 12A6 6 0 0 0 8 3\" />\n      </svg>\n    );\n  },\n);\n\nStopwatch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stopwatch;\n"
  },
  {
    "path": "src/icons/strava.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Strava = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-strava', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.731 0 2 9.125h2.788L6.73 5.497l1.93 3.628h2.766zm4.694 9.125-1.372 2.756L8.66 9.125H6.547L10.053 16l3.484-6.875z\" />\n      </svg>\n    );\n  },\n);\n\nStrava.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Strava;\n"
  },
  {
    "path": "src/icons/stripe.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Stripe = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-stripe', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.226 5.385c-.584 0-.937.164-.937.593 0 .468.607.674 1.36.93 1.228.415 2.844.963 2.851 2.993C11.5 11.868 9.924 13 7.63 13a7.7 7.7 0 0 1-3.009-.626V9.758c.926.506 2.095.88 3.01.88.617 0 1.058-.165 1.058-.671 0-.518-.658-.755-1.453-1.041C6.026 8.49 4.5 7.94 4.5 6.11 4.5 4.165 5.988 3 8.226 3a7.3 7.3 0 0 1 2.734.505v2.583c-.838-.45-1.896-.703-2.734-.703\" />\n      </svg>\n    );\n  },\n);\n\nStripe.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Stripe;\n"
  },
  {
    "path": "src/icons/subscript.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Subscript = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-subscript', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m3.266 12.496.96-2.853H7.76l.96 2.853H10L6.62 3H5.38L2 12.496zm2.748-8.063 1.419 4.23h-2.88l1.426-4.23zm6.132 7.203v-.075c0-.332.234-.618.619-.618.354 0 .618.256.618.58 0 .362-.271.649-.52.898l-1.788 1.832V15h3.59v-.958h-1.923v-.045l.973-1.04c.415-.438.867-.845.867-1.547 0-.8-.701-1.41-1.787-1.41-1.23 0-1.795.8-1.795 1.576v.06z\" />\n      </svg>\n    );\n  },\n);\n\nSubscript.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Subscript;\n"
  },
  {
    "path": "src/icons/substack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Substack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-substack', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 3.604H1v1.891h14v-1.89ZM1 7.208V16l7-3.926L15 16V7.208zM15 0H1v1.89h14z\" />\n      </svg>\n    );\n  },\n);\n\nSubstack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Substack;\n"
  },
  {
    "path": "src/icons/subtract.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Subtract = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-subtract', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nSubtract.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Subtract;\n"
  },
  {
    "path": "src/icons/suit-club-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitClubFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-club-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 12.5a3.5 3.5 0 0 1-2.684-1.254 20 20 0 0 0 1.582 2.907c.231.35-.02.847-.438.847H6.04c-.419 0-.67-.497-.438-.847a20 20 0 0 0 1.582-2.907 3.5 3.5 0 1 1-2.538-5.743 3.5 3.5 0 1 1 6.708 0A3.5 3.5 0 1 1 11.5 12.5\" />\n      </svg>\n    );\n  },\n);\n\nSuitClubFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitClubFill;\n"
  },
  {
    "path": "src/icons/suit-club.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitClub = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-club', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a3.25 3.25 0 0 0-3.25 3.25c0 .186 0 .29.016.41.014.12.045.27.12.527l.19.665-.692-.028a3.25 3.25 0 1 0 2.357 5.334.5.5 0 0 1 .844.518l-.003.005-.006.015-.024.055a22 22 0 0 1-.438.92 22 22 0 0 1-1.266 2.197c-.013.018-.02.05.001.09q.016.029.03.036A.04.04 0 0 0 5.9 15h4.2q.014 0 .022-.006a.1.1 0 0 0 .029-.035c.02-.04.014-.073.001-.091a23 23 0 0 1-1.704-3.117l-.024-.054-.006-.015-.002-.004a.5.5 0 0 1 .838-.524c.601.7 1.516 1.168 2.496 1.168a3.25 3.25 0 1 0-.139-6.498l-.699.03.199-.671c.14-.47.14-.745.139-.927V4.25A3.25 3.25 0 0 0 8 1m2.207 12.024c.225.405.487.848.78 1.294C11.437 15 10.975 16 10.1 16H5.9c-.876 0-1.338-1-.887-1.683.291-.442.552-.88.776-1.283a4.25 4.25 0 1 1-2.007-8.187l-.009-.064c-.023-.187-.023-.348-.023-.52V4.25a4.25 4.25 0 0 1 8.5 0c0 .14 0 .333-.04.596a4.25 4.25 0 0 1-.46 8.476 4.2 4.2 0 0 1-1.543-.298\" />\n      </svg>\n    );\n  },\n);\n\nSuitClub.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitClub;\n"
  },
  {
    "path": "src/icons/suit-diamond-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitDiamondFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-diamond-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.45 7.4 7.2 1.067a1 1 0 0 1 1.6 0L13.55 7.4a1 1 0 0 1 0 1.2L8.8 14.933a1 1 0 0 1-1.6 0L2.45 8.6a1 1 0 0 1 0-1.2\" />\n      </svg>\n    );\n  },\n);\n\nSuitDiamondFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitDiamondFill;\n"
  },
  {
    "path": "src/icons/suit-diamond.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitDiamond = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-diamond', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.384 1.226a.463.463 0 0 0-.768 0l-4.56 6.468a.54.54 0 0 0 0 .612l4.56 6.469a.463.463 0 0 0 .768 0l4.56-6.469a.54.54 0 0 0 0-.612zM6.848.613a1.39 1.39 0 0 1 2.304 0l4.56 6.468a1.61 1.61 0 0 1 0 1.838l-4.56 6.468a1.39 1.39 0 0 1-2.304 0L2.288 8.92a1.61 1.61 0 0 1 0-1.838z\" />\n      </svg>\n    );\n  },\n);\n\nSuitDiamond.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitDiamond;\n"
  },
  {
    "path": "src/icons/suit-heart-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitHeartFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-heart-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 1c2.21 0 4 1.755 4 3.92C8 2.755 9.79 1 12 1s4 1.755 4 3.92c0 3.263-3.234 4.414-7.608 9.608a.513.513 0 0 1-.784 0C3.234 9.334 0 8.183 0 4.92 0 2.755 1.79 1 4 1\" />\n      </svg>\n    );\n  },\n);\n\nSuitHeartFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitHeartFill;\n"
  },
  {
    "path": "src/icons/suit-heart.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitHeart = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-heart', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m8 6.236-.894-1.789c-.222-.443-.607-1.08-1.152-1.595C5.418 2.345 4.776 2 4 2 2.324 2 1 3.326 1 4.92c0 1.211.554 2.066 1.868 3.37.337.334.721.695 1.146 1.093C5.122 10.423 6.5 11.717 8 13.447c1.5-1.73 2.878-3.024 3.986-4.064.425-.398.81-.76 1.146-1.093C14.446 6.986 15 6.131 15 4.92 15 3.326 13.676 2 12 2c-.777 0-1.418.345-1.954.852-.545.515-.93 1.152-1.152 1.595zm.392 8.292a.513.513 0 0 1-.784 0c-1.601-1.902-3.05-3.262-4.243-4.381C1.3 8.208 0 6.989 0 4.92 0 2.755 1.79 1 4 1c1.6 0 2.719 1.05 3.404 2.008.26.365.458.716.596.992a7.6 7.6 0 0 1 .596-.992C9.281 2.049 10.4 1 12 1c2.21 0 4 1.755 4 3.92 0 2.069-1.3 3.288-3.365 5.227-1.193 1.12-2.642 2.48-4.243 4.38z\" />\n      </svg>\n    );\n  },\n);\n\nSuitHeart.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitHeart;\n"
  },
  {
    "path": "src/icons/suit-spade-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitSpadeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-spade-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.184 11.246A3.5 3.5 0 0 1 1 9c0-1.602 1.14-2.633 2.66-4.008C4.986 3.792 6.602 2.33 8 0c1.398 2.33 3.014 3.792 4.34 4.992C13.86 6.367 15 7.398 15 9a3.5 3.5 0 0 1-6.184 2.246 20 20 0 0 0 1.582 2.907c.231.35-.02.847-.438.847H6.04c-.419 0-.67-.497-.438-.847a20 20 0 0 0 1.582-2.907\" />\n      </svg>\n    );\n  },\n);\n\nSuitSpadeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitSpadeFill;\n"
  },
  {
    "path": "src/icons/suit-spade.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitSpade = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suit-spade', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a.5.5 0 0 1 .429.243c1.359 2.265 2.925 3.682 4.25 4.882q.144.128.282.255C14.308 6.604 15.5 7.747 15.5 9.5a4 4 0 0 1-5.406 3.746c.235.39.491.782.722 1.131.434.659-.01 1.623-.856 1.623H6.04c-.845 0-1.29-.964-.856-1.623.263-.397.51-.777.728-1.134A4 4 0 0 1 .5 9.5c0-1.753 1.192-2.896 2.539-4.12l.281-.255c1.326-1.2 2.892-2.617 4.251-4.882A.5.5 0 0 1 8 0M3.711 6.12C2.308 7.396 1.5 8.253 1.5 9.5a3 3 0 0 0 5.275 1.956.5.5 0 0 1 .868.43c-.094.438-.33.932-.611 1.428a29 29 0 0 1-1.013 1.614.03.03 0 0 0-.005.018.07.07 0 0 0 .024.054h3.924a.07.07 0 0 0 .024-.054.03.03 0 0 0-.005-.018c-.3-.455-.658-1.005-.96-1.535-.294-.514-.57-1.064-.664-1.507a.5.5 0 0 1 .868-.43A3 3 0 0 0 14.5 9.5c0-1.247-.808-2.104-2.211-3.38L12 5.86c-1.196-1.084-2.668-2.416-4-4.424-1.332 2.008-2.804 3.34-4 4.422l-.289.261z\" />\n      </svg>\n    );\n  },\n);\n\nSuitSpade.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitSpade;\n"
  },
  {
    "path": "src/icons/suitcase-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitcaseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V3h1.5A1.5 1.5 0 0 1 13 4.5v9a1.5 1.5 0 0 1-1.004 1.416A1 1 0 1 1 10 15H6a1 1 0 1 1-1.997-.084A1.5 1.5 0 0 1 3 13.5v-9A1.5 1.5 0 0 1 4.5 3H6zM9 1H7v2h2zM6 5.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0zm2.5 0a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0z\" />\n      </svg>\n    );\n  },\n);\n\nSuitcaseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitcaseFill;\n"
  },
  {
    "path": "src/icons/suitcase-lg-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitcaseLgFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase-lg-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 0a2 2 0 0 0-2 2H1.5A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14H2a.5.5 0 0 0 1 0h10a.5.5 0 0 0 1 0h.5a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2H11a2 2 0 0 0-2-2zM6 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1zM3 13V3h1v10zm9 0V3h1v10z\" />\n      </svg>\n    );\n  },\n);\n\nSuitcaseLgFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitcaseLgFill;\n"
  },
  {
    "path": "src/icons/suitcase-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SuitcaseLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase-lg', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2h3.5A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5H14a.5.5 0 0 1-1 0H3a.5.5 0 0 1-1 0h-.5A1.5 1.5 0 0 1 0 12.5v-9A1.5 1.5 0 0 1 1.5 2zm1 0h4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1M1.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5H3V3zM15 12.5v-9a.5.5 0 0 0-.5-.5H13v10h1.5a.5.5 0 0 0 .5-.5m-3 .5V3H4v10z\" />\n      </svg>\n    );\n  },\n);\n\nSuitcaseLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SuitcaseLg;\n"
  },
  {
    "path": "src/icons/suitcase.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Suitcase = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 6 5m2 0a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5m2 0a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 10 5\" />\n        <path d=\"M6.5 0a.5.5 0 0 0-.5.5V3H5a2 2 0 0 0-2 2v8a2 2 0 0 0 1.031 1.75A1.003 1.003 0 0 0 5 16a1 1 0 0 0 1-1h4a1 1 0 1 0 1.969-.25A2 2 0 0 0 13 13V5a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-.5-.5zM9 3H7V1h2zm3 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1z\" />\n      </svg>\n    );\n  },\n);\n\nSuitcase.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Suitcase;\n"
  },
  {
    "path": "src/icons/suitcase2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Suitcase2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0a.5.5 0 0 0-.5.5V3H4.5A1.5 1.5 0 0 0 3 4.5v9a1.5 1.5 0 0 0 1.003 1.416A1 1 0 1 0 6 15h4a1 1 0 1 0 1.996-.084A1.5 1.5 0 0 0 13 13.5v-9A1.5 1.5 0 0 0 11.5 3H10V.5a.5.5 0 0 0-.5-.5zM9 3H7V1h2zM4 7V6h8v1z\" />\n      </svg>\n    );\n  },\n);\n\nSuitcase2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Suitcase2Fill;\n"
  },
  {
    "path": "src/icons/suitcase2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Suitcase2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-suitcase2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0a.5.5 0 0 0-.5.5V3H5a2 2 0 0 0-2 2v8a2 2 0 0 0 1.031 1.75A1.003 1.003 0 0 0 5 16a1 1 0 0 0 1-1h4a1 1 0 1 0 1.969-.25A2 2 0 0 0 13 13V5a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-.5-.5zM9 3H7V1h2zm3 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7h8zM5 4h6a1 1 0 0 1 1 1v1H4V5a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nSuitcase2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Suitcase2;\n"
  },
  {
    "path": "src/icons/sun-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SunFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sun-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8M8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0m0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13m8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5M3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8m10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0m-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707M4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708\" />\n      </svg>\n    );\n  },\n);\n\nSunFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SunFill;\n"
  },
  {
    "path": "src/icons/sun.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sun = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sun', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8M8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0m0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13m8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5M3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8m10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0m-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707M4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708\" />\n      </svg>\n    );\n  },\n);\n\nSun.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sun;\n"
  },
  {
    "path": "src/icons/sunglasses.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sunglasses = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sunglasses', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 5a2 2 0 0 0-2 2v.5H.5a.5.5 0 0 0 0 1H1V9a2 2 0 0 0 2 2h1a3 3 0 0 0 3-3 1 1 0 1 1 2 0 3 3 0 0 0 3 3h1a2 2 0 0 0 2-2v-.5h.5a.5.5 0 0 0 0-1H15V7a2 2 0 0 0-2-2h-2a2 2 0 0 0-1.888 1.338A2 2 0 0 0 8 6a2 2 0 0 0-1.112.338A2 2 0 0 0 5 5zm0 1h.941c.264 0 .348.356.112.474l-.457.228a2 2 0 0 0-.894.894l-.228.457C2.356 8.289 2 8.205 2 7.94V7a1 1 0 0 1 1-1\" />\n      </svg>\n    );\n  },\n);\n\nSunglasses.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sunglasses;\n"
  },
  {
    "path": "src/icons/sunrise-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SunriseFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sunrise-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646 1.146a.5.5 0 0 1 .708 0l1.5 1.5a.5.5 0 0 1-.708.708L8.5 2.707V4.5a.5.5 0 0 1-1 0V2.707l-.646.647a.5.5 0 1 1-.708-.708zM2.343 4.343a.5.5 0 0 1 .707 0l1.414 1.414a.5.5 0 0 1-.707.707L2.343 5.05a.5.5 0 0 1 0-.707m11.314 0a.5.5 0 0 1 0 .707l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0M11.709 11.5a4 4 0 1 0-7.418 0H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-3.79zM0 10a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 0 10m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSunriseFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SunriseFill;\n"
  },
  {
    "path": "src/icons/sunrise.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sunrise = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sunrise', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646 1.146a.5.5 0 0 1 .708 0l1.5 1.5a.5.5 0 0 1-.708.708L8.5 2.707V4.5a.5.5 0 0 1-1 0V2.707l-.646.647a.5.5 0 1 1-.708-.708zM2.343 4.343a.5.5 0 0 1 .707 0l1.414 1.414a.5.5 0 0 1-.707.707L2.343 5.05a.5.5 0 0 1 0-.707m11.314 0a.5.5 0 0 1 0 .707l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0M8 7a3 3 0 0 1 2.599 4.5H5.4A3 3 0 0 1 8 7m3.71 4.5a4 4 0 1 0-7.418 0H.499a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-3.79zM0 10a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 0 10m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSunrise.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sunrise;\n"
  },
  {
    "path": "src/icons/sunset-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SunsetFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sunset-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646 4.854a.5.5 0 0 0 .708 0l1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V1.5a.5.5 0 0 0-1 0v1.793l-.646-.647a.5.5 0 1 0-.708.708zm-5.303-.51a.5.5 0 0 1 .707 0l1.414 1.413a.5.5 0 0 1-.707.707L2.343 5.05a.5.5 0 0 1 0-.707zm11.314 0a.5.5 0 0 1 0 .706l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zM11.709 11.5a4 4 0 1 0-7.418 0H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-3.79zM0 10a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 0 10m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSunsetFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SunsetFill;\n"
  },
  {
    "path": "src/icons/sunset.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Sunset = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-sunset', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.646 4.854a.5.5 0 0 0 .708 0l1.5-1.5a.5.5 0 0 0-.708-.708l-.646.647V1.5a.5.5 0 0 0-1 0v1.793l-.646-.647a.5.5 0 1 0-.708.708zm-5.303-.51a.5.5 0 0 1 .707 0l1.414 1.413a.5.5 0 0 1-.707.707L2.343 5.05a.5.5 0 0 1 0-.707zm11.314 0a.5.5 0 0 1 0 .706l-1.414 1.414a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zM8 7a3 3 0 0 1 2.599 4.5H5.4A3 3 0 0 1 8 7m3.71 4.5a4 4 0 1 0-7.418 0H.499a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-3.79zM0 10a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 0 10m13 0a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nSunset.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Sunset;\n"
  },
  {
    "path": "src/icons/superscript.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Superscript = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-superscript', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m4.266 12.496.96-2.853H8.76l.96 2.853H11L7.62 3H6.38L3 12.496zm2.748-8.063 1.419 4.23h-2.88l1.426-4.23zm5.132-1.797v-.075c0-.332.234-.618.619-.618.354 0 .618.256.618.58 0 .362-.271.649-.52.898l-1.788 1.832V6h3.59v-.958h-1.923v-.045l.973-1.04c.415-.438.867-.845.867-1.547 0-.8-.701-1.41-1.787-1.41C11.565 1 11 1.8 11 2.576v.06z\" />\n      </svg>\n    );\n  },\n);\n\nSuperscript.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Superscript;\n"
  },
  {
    "path": "src/icons/symmetry-horizontal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SymmetryHorizontal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-symmetry-horizontal', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.5 7a.5.5 0 0 0 .24-.939l-11-6A.5.5 0 0 0 2 .5v6a.5.5 0 0 0 .5.5zm.485 2.376a.5.5 0 0 1-.246.563l-11 6A.5.5 0 0 1 2 15.5v-6a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .485.376M11.539 10H3v4.658z\" />\n      </svg>\n    );\n  },\n);\n\nSymmetryHorizontal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SymmetryHorizontal;\n"
  },
  {
    "path": "src/icons/symmetry-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst SymmetryVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-symmetry-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 2.5a.5.5 0 0 0-.939-.24l-6 11A.5.5 0 0 0 .5 14h6a.5.5 0 0 0 .5-.5zm2.376-.484a.5.5 0 0 1 .563.245l6 11A.5.5 0 0 1 15.5 14h-6a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .376-.484M10 4.46V13h4.658z\" />\n      </svg>\n    );\n  },\n);\n\nSymmetryVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default SymmetryVertical;\n"
  },
  {
    "path": "src/icons/table.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Table = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-table', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 2h-4v3h4zm0 4h-4v3h4zm0 4h-4v3h3a1 1 0 0 0 1-1zm-5 3v-3H6v3zm-5 0v-3H1v2a1 1 0 0 0 1 1zm-4-4h4V8H1zm0-4h4V4H1zm5-3v3h4V4zm4 4H6v3h4z\" />\n      </svg>\n    );\n  },\n);\n\nTable.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Table;\n"
  },
  {
    "path": "src/icons/tablet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TabletFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tablet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm7 11a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n      </svg>\n    );\n  },\n);\n\nTabletFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TabletFill;\n"
  },
  {
    "path": "src/icons/tablet-landscape-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TabletLandscapeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tablet-landscape-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 14a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2zm11-7a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nTabletLandscapeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TabletLandscapeFill;\n"
  },
  {
    "path": "src/icons/tablet-landscape.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TabletLandscape = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tablet-landscape', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm-1 8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2z\" />\n        <path d=\"M14 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n      </svg>\n    );\n  },\n);\n\nTabletLandscape.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TabletLandscape;\n"
  },
  {
    "path": "src/icons/tablet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tablet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tablet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M8 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nTablet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tablet;\n"
  },
  {
    "path": "src/icons/tag-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TagFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tag-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l4.586-4.586a1 1 0 0 0 0-1.414l-7-7A1 1 0 0 0 6.586 1zm4 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nTagFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TagFill;\n"
  },
  {
    "path": "src/icons/tag.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tag = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tag', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-1 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0\" />\n        <path d=\"M2 1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 1 6.586V2a1 1 0 0 1 1-1m0 5.586 7 7L13.586 9l-7-7H2z\" />\n      </svg>\n    );\n  },\n);\n\nTag.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tag;\n"
  },
  {
    "path": "src/icons/tags-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TagsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tags-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586zm3.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"M1.293 7.793A1 1 0 0 1 1 7.086V2a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l.043-.043z\" />\n      </svg>\n    );\n  },\n);\n\nTagsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TagsFill;\n"
  },
  {
    "path": "src/icons/tags.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tags = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tags', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 2v4.586l7 7L14.586 9l-7-7zM2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586z\" />\n        <path d=\"M5.5 5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m0 1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M1 7.086a1 1 0 0 0 .293.707L8.75 15.25l-.043.043a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 0 7.586V3a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nTags.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tags;\n"
  },
  {
    "path": "src/icons/taxi-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TaxiFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-taxi-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 1a1 1 0 0 0-1 1v1h-.181A2.5 2.5 0 0 0 2.52 4.515l-.792 1.848a.8.8 0 0 1-.38.404c-.5.25-.855.715-.965 1.262L.05 9.708a2.5 2.5 0 0 0-.049.49v.413c0 .814.39 1.543 1 1.997V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.338c1.292.048 2.745.088 4 .088s2.708-.04 4-.088V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.892c.61-.454 1-1.183 1-1.997v-.413q0-.248-.049-.49l-.335-1.68a1.8 1.8 0 0 0-.964-1.261.8.8 0 0 1-.381-.404l-.792-1.848A2.5 2.5 0 0 0 11.181 3H11V2a1 1 0 0 0-1-1zM4.309 4h7.382a.5.5 0 0 1 .447.276l.956 1.913a.51.51 0 0 1-.497.731c-.91-.073-3.35-.17-4.597-.17s-3.688.097-4.597.17a.51.51 0 0 1-.497-.731l.956-1.913A.5.5 0 0 1 4.309 4M4 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0m10 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-9 0a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1\" />\n      </svg>\n    );\n  },\n);\n\nTaxiFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TaxiFrontFill;\n"
  },
  {
    "path": "src/icons/taxi-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TaxiFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-taxi-front', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.862 5.276 3.906 7.19a.51.51 0 0 0 .497.731c.91-.073 2.35-.17 3.597-.17s2.688.097 3.597.17a.51.51 0 0 0 .497-.731l-.956-1.913A.5.5 0 0 0 10.691 5H5.309a.5.5 0 0 0-.447.276M4 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0m10 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-9 0a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1\" />\n        <path d=\"M6 1a1 1 0 0 0-1 1v1h-.181A2.5 2.5 0 0 0 2.52 4.515l-.792 1.848a.8.8 0 0 1-.38.404c-.5.25-.855.715-.965 1.262L.05 9.708a2.5 2.5 0 0 0-.049.49v.413c0 .814.39 1.543 1 1.997V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.338c1.292.048 2.745.088 4 .088s2.708-.04 4-.088V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.892c.61-.454 1-1.183 1-1.997v-.413q0-.248-.049-.49l-.335-1.68a1.8 1.8 0 0 0-.964-1.261.8.8 0 0 1-.381-.404l-.792-1.848A2.5 2.5 0 0 0 11.181 3H11V2a1 1 0 0 0-1-1zM4.819 4h6.362a1.5 1.5 0 0 1 1.379.91l.792 1.847a1.8 1.8 0 0 0 .853.904c.222.112.381.32.43.564l.336 1.679q.03.146.029.294v.413a1.48 1.48 0 0 1-1.408 1.484c-1.555.07-3.786.155-5.592.155s-4.037-.084-5.592-.155A1.48 1.48 0 0 1 1 10.611v-.413q0-.148.03-.294l.335-1.68a.8.8 0 0 1 .43-.563c.383-.19.685-.511.853-.904l.792-1.848A1.5 1.5 0 0 1 4.82 4Z\" />\n      </svg>\n    );\n  },\n);\n\nTaxiFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TaxiFront;\n"
  },
  {
    "path": "src/icons/telegram.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Telegram = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telegram', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.287 5.906q-1.168.486-4.666 2.01-.567.225-.595.442c-.03.243.275.339.69.47l.175.055c.408.133.958.288 1.243.294q.39.01.868-.32 3.269-2.206 3.374-2.23c.05-.012.12-.026.166.016s.042.12.037.141c-.03.129-1.227 1.241-1.846 1.817-.193.18-.33.307-.358.336a8 8 0 0 1-.188.186c-.38.366-.664.64.015 1.088.327.216.589.393.85.571.284.194.568.387.936.629q.14.092.27.187c.331.236.63.448.997.414.214-.02.435-.22.547-.82.265-1.417.786-4.486.906-5.751a1.4 1.4 0 0 0-.013-.315.34.34 0 0 0-.114-.217.53.53 0 0 0-.31-.093c-.3.005-.763.166-2.984 1.09\" />\n      </svg>\n    );\n  },\n);\n\nTelegram.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Telegram;\n"
  },
  {
    "path": "src/icons/telephone-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneFill;\n"
  },
  {
    "path": "src/icons/telephone-forward-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneForwardFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-forward-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zm10.761.135a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L14.293 4H9.5a.5.5 0 0 1 0-1h4.793l-1.647-1.646a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneForwardFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneForwardFill;\n"
  },
  {
    "path": "src/icons/telephone-forward.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneForward = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-forward', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zm10.762.135a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L14.293 4H9.5a.5.5 0 0 1 0-1h4.793l-1.647-1.646a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nTelephoneForward.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneForward;\n"
  },
  {
    "path": "src/icons/telephone-inbound-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneInboundFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-inbound-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zM15.854.146a.5.5 0 0 1 0 .708L11.707 5H14.5a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 1 0v2.793L15.146.146a.5.5 0 0 1 .708 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneInboundFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneInboundFill;\n"
  },
  {
    "path": "src/icons/telephone-inbound.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneInbound = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-inbound', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.854.146a.5.5 0 0 1 0 .708L11.707 5H14.5a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 1 0v2.793L15.146.146a.5.5 0 0 1 .708 0m-12.2 1.182a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\" />\n      </svg>\n    );\n  },\n);\n\nTelephoneInbound.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneInbound;\n"
  },
  {
    "path": "src/icons/telephone-minus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneMinusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-minus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zM10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneMinusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneMinusFill;\n"
  },
  {
    "path": "src/icons/telephone-minus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneMinus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-minus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5\"\n        />\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\" />\n      </svg>\n    );\n  },\n);\n\nTelephoneMinus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneMinus;\n"
  },
  {
    "path": "src/icons/telephone-outbound-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneOutboundFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-outbound-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zM11 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V1.707l-4.146 4.147a.5.5 0 0 1-.708-.708L14.293 1H11.5a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneOutboundFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneOutboundFill;\n"
  },
  {
    "path": "src/icons/telephone-outbound.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneOutbound = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-outbound', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zM11 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V1.707l-4.146 4.147a.5.5 0 0 1-.708-.708L14.293 1H11.5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTelephoneOutbound.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneOutbound;\n"
  },
  {
    "path": "src/icons/telephone-plus-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephonePlusFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-plus-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zM12.5 1a.5.5 0 0 1 .5.5V3h1.5a.5.5 0 0 1 0 1H13v1.5a.5.5 0 0 1-1 0V4h-1.5a.5.5 0 0 1 0-1H12V1.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephonePlusFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephonePlusFill;\n"
  },
  {
    "path": "src/icons/telephone-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephonePlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12.5 1a.5.5 0 0 1 .5.5V3h1.5a.5.5 0 0 1 0 1H13v1.5a.5.5 0 0 1-1 0V4h-1.5a.5.5 0 0 1 0-1H12V1.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephonePlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephonePlus;\n"
  },
  {
    "path": "src/icons/telephone-x-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneXFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-x-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877zm9.261 1.135a.5.5 0 0 1 .708 0L13 2.793l1.146-1.147a.5.5 0 0 1 .708.708L13.707 3.5l1.147 1.146a.5.5 0 0 1-.708.708L13 4.207l-1.146 1.147a.5.5 0 0 1-.708-.708L12.293 3.5l-1.147-1.146a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneXFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneXFill;\n"
  },
  {
    "path": "src/icons/telephone-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TelephoneX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone-x', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M11.146 1.646a.5.5 0 0 1 .708 0L13 2.793l1.146-1.147a.5.5 0 0 1 .708.708L13.707 3.5l1.147 1.146a.5.5 0 0 1-.708.708L13 4.207l-1.146 1.147a.5.5 0 0 1-.708-.708L12.293 3.5l-1.147-1.146a.5.5 0 0 1 0-.708\"\n        />\n      </svg>\n    );\n  },\n);\n\nTelephoneX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TelephoneX;\n"
  },
  {
    "path": "src/icons/telephone.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Telephone = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-telephone', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\" />\n      </svg>\n    );\n  },\n);\n\nTelephone.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Telephone;\n"
  },
  {
    "path": "src/icons/tencent-qq.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TencentQq = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tencent-qq', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.048 3.323c.022.277-.13.523-.338.55-.21.026-.397-.176-.419-.453s.13-.523.338-.55c.21-.026.397.176.42.453Zm2.265-.24c-.603-.146-.894.256-.936.333-.027.048-.008.117.037.15.045.035.092.025.119-.003.361-.39.751-.172.829-.129l.011.007c.053.024.147.028.193-.098.023-.063.017-.11-.006-.142-.016-.023-.089-.08-.247-.118\" />\n        <path d=\"M11.727 6.719c0-.022.01-.375.01-.557 0-3.07-1.45-6.156-5.015-6.156S1.708 3.092 1.708 6.162c0 .182.01.535.01.557l-.72 1.795a26 26 0 0 0-.534 1.508c-.68 2.187-.46 3.093-.292 3.113.36.044 1.401-1.647 1.401-1.647 0 .979.504 2.256 1.594 3.179-.408.126-.907.319-1.228.556-.29.213-.253.43-.201.518.228.386 3.92.246 4.985.126 1.065.12 4.756.26 4.984-.126.052-.088.088-.305-.2-.518-.322-.237-.822-.43-1.23-.557 1.09-.922 1.594-2.2 1.594-3.178 0 0 1.041 1.69 1.401 1.647.168-.02.388-.926-.292-3.113a26 26 0 0 0-.534-1.508l-.72-1.795ZM9.773 5.53a.1.1 0 0 1-.009.096c-.109.159-1.554.943-3.033.943h-.017c-1.48 0-2.925-.784-3.034-.943a.1.1 0 0 1-.018-.055q0-.022.01-.04c.13-.287 1.43-.606 3.042-.606h.017c1.611 0 2.912.319 3.042.605m-4.32-.989c-.483.022-.896-.529-.922-1.229s.344-1.286.828-1.308c.483-.022.896.529.922 1.23.027.7-.344 1.286-.827 1.307Zm2.538 0c-.484-.022-.854-.607-.828-1.308.027-.7.44-1.25.923-1.23.483.023.853.608.827 1.309-.026.7-.439 1.251-.922 1.23ZM2.928 8.99q.32.063.639.117v2.336s1.104.222 2.21.068V9.363q.49.027.937.023h.017c1.117.013 2.474-.136 3.786-.396.097.622.151 1.386.097 2.284-.146 2.45-1.6 3.99-3.846 4.012h-.091c-2.245-.023-3.7-1.562-3.846-4.011-.054-.9 0-1.663.097-2.285\" />\n      </svg>\n    );\n  },\n);\n\nTencentQq.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TencentQq;\n"
  },
  {
    "path": "src/icons/terminal-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TerminalDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V4a1 1 0 0 0-1-1z\" />\n        <path d=\"M3.146 5.146a.5.5 0 0 1 .708 0L5.177 6.47a.75.75 0 0 1 0 1.06L3.854 8.854a.5.5 0 1 1-.708-.708L4.293 7 3.146 5.854a.5.5 0 0 1 0-.708M5.5 9a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nTerminalDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TerminalDash;\n"
  },
  {
    "path": "src/icons/terminal-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TerminalFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm9.5 5.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1m-6.354-.354a.5.5 0 1 0 .708.708l2-2a.5.5 0 0 0 0-.708l-2-2a.5.5 0 1 0-.708.708L4.793 6.5z\" />\n      </svg>\n    );\n  },\n);\n\nTerminalFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TerminalFill;\n"
  },
  {
    "path": "src/icons/terminal-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TerminalPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V4a1 1 0 0 0-1-1z\" />\n        <path d=\"M3.146 5.146a.5.5 0 0 1 .708 0L5.177 6.47a.75.75 0 0 1 0 1.06L3.854 8.854a.5.5 0 1 1-.708-.708L4.293 7 3.146 5.854a.5.5 0 0 1 0-.708M5.5 9a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTerminalPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TerminalPlus;\n"
  },
  {
    "path": "src/icons/terminal-split.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TerminalSplit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal-split', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.146 3.146a.5.5 0 0 1 .708 0l.823.824a.75.75 0 0 1 0 1.06l-.823.824a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708M4 6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1A.5.5 0 0 1 4 6m6.354-2.854a.5.5 0 0 0-.708.708l.647.646-.647.646a.5.5 0 1 0 .708.708l.823-.824a.75.75 0 0 0 0-1.06zM12 5.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n        <path d=\"M0 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h5.5V2zm6.5 0v12H14a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nTerminalSplit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TerminalSplit;\n"
  },
  {
    "path": "src/icons/terminal-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TerminalX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V4a1 1 0 0 0-1-1z\" />\n        <path d=\"M3.146 5.146a.5.5 0 0 1 .708 0L5.177 6.47a.75.75 0 0 1 0 1.06L3.854 8.854a.5.5 0 1 1-.708-.708L4.293 7 3.146 5.854a.5.5 0 0 1 0-.708M5.5 9a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nTerminalX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TerminalX;\n"
  },
  {
    "path": "src/icons/terminal.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Terminal = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-terminal', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 9a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3A.5.5 0 0 1 6 9M3.854 4.146a.5.5 0 1 0-.708.708L4.793 6.5 3.146 8.146a.5.5 0 1 0 .708.708l2-2a.5.5 0 0 0 0-.708z\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1z\" />\n      </svg>\n    );\n  },\n);\n\nTerminal.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Terminal;\n"
  },
  {
    "path": "src/icons/text-center.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextCenter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-center', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M4 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTextCenter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextCenter;\n"
  },
  {
    "path": "src/icons/text-indent-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextIndentLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-indent-left', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m.646 2.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L4.293 8 2.646 6.354a.5.5 0 0 1 0-.708M7 6.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 3a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m-5 3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTextIndentLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextIndentLeft;\n"
  },
  {
    "path": "src/icons/text-indent-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextIndentRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-indent-right', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 3.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m10.646 2.146a.5.5 0 0 1 .708.708L11.707 8l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zM2 6.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 3a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTextIndentRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextIndentRight;\n"
  },
  {
    "path": "src/icons/text-left.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextLeft = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-left', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTextLeft.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextLeft;\n"
  },
  {
    "path": "src/icons/text-paragraph.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextParagraph = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-paragraph', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m4-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTextParagraph.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextParagraph;\n"
  },
  {
    "path": "src/icons/text-right.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextRight = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-right', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m4-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTextRight.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextRight;\n"
  },
  {
    "path": "src/icons/text-wrap.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextWrap = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-text-wrap', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 3.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h9a2.5 2.5 0 0 1 0 5h-1.293l.647.646a.5.5 0 0 1-.708.708l-1.5-1.5a.5.5 0 0 1 0-.708l1.5-1.5a.5.5 0 0 1 .708.708l-.647.646H11.5a1.5 1.5 0 0 0 0-3h-9a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5H7a.5.5 0 0 1 0 1H2.5a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nTextWrap.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextWrap;\n"
  },
  {
    "path": "src/icons/textarea-resize.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextareaResize = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-textarea-resize', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4.5A2.5 2.5 0 0 1 2.5 2h11A2.5 2.5 0 0 1 16 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 11.5zM2.5 3A1.5 1.5 0 0 0 1 4.5v7A1.5 1.5 0 0 0 2.5 13h11a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 13.5 3zm10.854 4.646a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708l3-3a.5.5 0 0 1 .708 0m0 2.5a.5.5 0 0 1 0 .708l-.5.5a.5.5 0 0 1-.708-.708l.5-.5a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nTextareaResize.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextareaResize;\n"
  },
  {
    "path": "src/icons/textarea-t.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TextareaT = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-textarea-t', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 2.5A1.5 1.5 0 0 1 3 1h10a1.5 1.5 0 0 1 1.5 1.5v3.563a2 2 0 0 1 0 3.874V13.5A1.5 1.5 0 0 1 13 15H3a1.5 1.5 0 0 1-1.5-1.5V9.937a2 2 0 0 1 0-3.874zm1 3.563a2 2 0 0 1 0 3.874V13.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V9.937a2 2 0 0 1 0-3.874V2.5A.5.5 0 0 0 13 2H3a.5.5 0 0 0-.5.5zM2 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2m12 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n        <path d=\"M11.434 4H4.566L4.5 5.994h.386c.21-1.252.612-1.446 2.173-1.495l.343-.011v6.343c0 .537-.116.665-1.049.748V12h3.294v-.421c-.938-.083-1.054-.21-1.054-.748V4.488l.348.01c1.56.05 1.963.244 2.173 1.496h.386z\" />\n      </svg>\n    );\n  },\n);\n\nTextareaT.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TextareaT;\n"
  },
  {
    "path": "src/icons/textarea.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Textarea = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-textarea', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 2.5A1.5 1.5 0 0 1 3 1h10a1.5 1.5 0 0 1 1.5 1.5v3.563a2 2 0 0 1 0 3.874V13.5A1.5 1.5 0 0 1 13 15H3a1.5 1.5 0 0 1-1.5-1.5V9.937a2 2 0 0 1 0-3.874zm1 3.563a2 2 0 0 1 0 3.874V13.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V9.937a2 2 0 0 1 0-3.874V2.5A.5.5 0 0 0 13 2H3a.5.5 0 0 0-.5.5zM2 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2m12 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nTextarea.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Textarea;\n"
  },
  {
    "path": "src/icons/thermometer-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThermometerHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 12.5a1.5 1.5 0 1 1-2-1.415V6.5a.5.5 0 0 1 1 0v4.585a1.5 1.5 0 0 1 1 1.415\" />\n        <path d=\"M5.5 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0zM8 1a1.5 1.5 0 0 0-1.5 1.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0l-.166-.15V2.5A1.5 1.5 0 0 0 8 1\" />\n      </svg>\n    );\n  },\n);\n\nThermometerHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThermometerHalf;\n"
  },
  {
    "path": "src/icons/thermometer-high.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThermometerHigh = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer-high', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 12.5a1.5 1.5 0 1 1-2-1.415V2.5a.5.5 0 0 1 1 0v8.585a1.5 1.5 0 0 1 1 1.415\" />\n        <path d=\"M5.5 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0zM8 1a1.5 1.5 0 0 0-1.5 1.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0l-.166-.15V2.5A1.5 1.5 0 0 0 8 1\" />\n      </svg>\n    );\n  },\n);\n\nThermometerHigh.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThermometerHigh;\n"
  },
  {
    "path": "src/icons/thermometer-low.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThermometerLow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer-low', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 12.5a1.5 1.5 0 1 1-2-1.415V9.5a.5.5 0 0 1 1 0v1.585a1.5 1.5 0 0 1 1 1.415\" />\n        <path d=\"M5.5 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0zM8 1a1.5 1.5 0 0 0-1.5 1.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0l-.166-.15V2.5A1.5 1.5 0 0 0 8 1\" />\n      </svg>\n    );\n  },\n);\n\nThermometerLow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThermometerLow;\n"
  },
  {
    "path": "src/icons/thermometer-snow.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThermometerSnow = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer-snow', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 12.5a1.5 1.5 0 1 1-2-1.415V9.5a.5.5 0 0 1 1 0v1.585A1.5 1.5 0 0 1 5 12.5\" />\n        <path d=\"M1 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0zM3.5 1A1.5 1.5 0 0 0 2 2.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0L5 10.486V2.5A1.5 1.5 0 0 0 3.5 1m5 1a.5.5 0 0 1 .5.5v1.293l.646-.647a.5.5 0 0 1 .708.708L9 5.207v1.927l1.669-.963.495-1.85a.5.5 0 1 1 .966.26l-.237.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.884.237a.5.5 0 1 1-.26.966l-1.848-.495L9.5 8l1.669.963 1.849-.495a.5.5 0 1 1 .258.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.237.883a.5.5 0 1 1-.966.258L10.67 9.83 9 8.866v1.927l1.354 1.353a.5.5 0 0 1-.708.708L9 12.207V13.5a.5.5 0 0 1-1 0v-11a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nThermometerSnow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThermometerSnow;\n"
  },
  {
    "path": "src/icons/thermometer-sun.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThermometerSun = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer-sun', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 12.5a1.5 1.5 0 1 1-2-1.415V2.5a.5.5 0 0 1 1 0v8.585A1.5 1.5 0 0 1 5 12.5\" />\n        <path d=\"M1 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0zM3.5 1A1.5 1.5 0 0 0 2 2.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0L5 10.486V2.5A1.5 1.5 0 0 0 3.5 1m5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5m4.243 1.757a.5.5 0 0 1 0 .707l-.707.708a.5.5 0 1 1-.708-.708l.708-.707a.5.5 0 0 1 .707 0M8 5.5a.5.5 0 0 1 .5-.5 3 3 0 1 1 0 6 .5.5 0 0 1 0-1 2 2 0 0 0 0-4 .5.5 0 0 1-.5-.5M12.5 8a.5.5 0 0 1 .5-.5h1a.5.5 0 1 1 0 1h-1a.5.5 0 0 1-.5-.5m-1.172 2.828a.5.5 0 0 1 .708 0l.707.708a.5.5 0 0 1-.707.707l-.708-.707a.5.5 0 0 1 0-.708M8.5 12a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nThermometerSun.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThermometerSun;\n"
  },
  {
    "path": "src/icons/thermometer.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Thermometer = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thermometer', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 14a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" />\n        <path d=\"M8 0a2.5 2.5 0 0 0-2.5 2.5v7.55a3.5 3.5 0 1 0 5 0V2.5A2.5 2.5 0 0 0 8 0M6.5 2.5a1.5 1.5 0 1 1 3 0v7.987l.167.15a2.5 2.5 0 1 1-3.333 0l.166-.15z\" />\n      </svg>\n    );\n  },\n);\n\nThermometer.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Thermometer;\n"
  },
  {
    "path": "src/icons/threads-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThreadsFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-threads-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.81 9.204c0-.41.197-1.062 1.727-1.062.469 0 .758.034 1.146.121-.124 1.606-.91 1.818-1.674 1.818-.418 0-1.2-.218-1.2-.877Z\" />\n        <path d=\"M2.59 16h10.82A2.59 2.59 0 0 0 16 13.41V2.59A2.59 2.59 0 0 0 13.41 0H2.59A2.59 2.59 0 0 0 0 2.59v10.82A2.59 2.59 0 0 0 2.59 16M5.866 5.91c.567-.81 1.315-1.126 2.35-1.126.73 0 1.351.246 1.795.711.443.466.696 1.132.754 1.983q.368.154.678.363c.832.559 1.29 1.395 1.29 2.353 0 2.037-1.67 3.806-4.692 3.806-2.595 0-5.291-1.51-5.291-6.004C2.75 3.526 5.361 2 8.033 2c1.234 0 4.129.182 5.217 3.777l-1.02.264c-.842-2.56-2.607-2.968-4.224-2.968-2.675 0-4.187 1.628-4.187 5.093 0 3.107 1.69 4.757 4.222 4.757 2.083 0 3.636-1.082 3.636-2.667 0-1.079-.906-1.595-.953-1.595-.177.925-.651 2.482-2.733 2.482-1.213 0-2.26-.838-2.26-1.936 0-1.568 1.488-2.136 2.663-2.136.44 0 .97.03 1.247.086 0-.478-.404-1.296-1.426-1.296-.911 0-1.16.288-1.45.624l-.024.027c-.202-.135-.875-.601-.875-.601Z\" />\n      </svg>\n    );\n  },\n);\n\nThreadsFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThreadsFill;\n"
  },
  {
    "path": "src/icons/threads.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Threads = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-threads', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.321 6.016c-.27-.18-1.166-.802-1.166-.802.756-1.081 1.753-1.502 3.132-1.502.975 0 1.803.327 2.394.948s.928 1.509 1.005 2.644q.492.207.905.484c1.109.745 1.719 1.86 1.719 3.137 0 2.716-2.226 5.075-6.256 5.075C4.594 16 1 13.987 1 7.994 1 2.034 4.482 0 8.044 0 9.69 0 13.55.243 15 5.036l-1.36.353C12.516 1.974 10.163 1.43 8.006 1.43c-3.565 0-5.582 2.171-5.582 6.79 0 4.143 2.254 6.343 5.63 6.343 2.777 0 4.847-1.443 4.847-3.556 0-1.438-1.208-2.127-1.27-2.127-.236 1.234-.868 3.31-3.644 3.31-1.618 0-3.013-1.118-3.013-2.582 0-2.09 1.984-2.847 3.55-2.847.586 0 1.294.04 1.663.114 0-.637-.54-1.728-1.9-1.728-1.25 0-1.566.405-1.967.868ZM8.716 8.19c-2.04 0-2.304.87-2.304 1.416 0 .878 1.043 1.168 1.6 1.168 1.02 0 2.067-.282 2.232-2.423a6.2 6.2 0 0 0-1.528-.161\" />\n      </svg>\n    );\n  },\n);\n\nThreads.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Threads;\n"
  },
  {
    "path": "src/icons/three-dots-vertical.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThreeDotsVertical = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-three-dots-vertical', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0\" />\n      </svg>\n    );\n  },\n);\n\nThreeDotsVertical.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThreeDotsVertical;\n"
  },
  {
    "path": "src/icons/three-dots.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThreeDots = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-three-dots', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nThreeDots.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThreeDots;\n"
  },
  {
    "path": "src/icons/thunderbolt-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ThunderboltFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thunderbolt-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 3a1 1 0 0 0-1 1v7.293A1 1 0 0 0 .293 12L2 13.707a1 1 0 0 0 .707.293h10.586a1 1 0 0 0 .707-.293L15.707 12a1 1 0 0 0 .293-.707V4a1 1 0 0 0-1-1zm2.5 3h9a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nThunderboltFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ThunderboltFill;\n"
  },
  {
    "path": "src/icons/thunderbolt.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Thunderbolt = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-thunderbolt', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M1 3a1 1 0 0 0-1 1v7.293A1 1 0 0 0 .293 12L2 13.707a1 1 0 0 0 .707.293h10.586a1 1 0 0 0 .707-.293L15.707 12a1 1 0 0 0 .293-.707V4a1 1 0 0 0-1-1zm0 1h14v7.293L13.293 13H2.707L1 11.293z\" />\n      </svg>\n    );\n  },\n);\n\nThunderbolt.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Thunderbolt;\n"
  },
  {
    "path": "src/icons/ticket-detailed-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TicketDetailedFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket-detailed-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6zm4 1a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5m0 5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5M4 8a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H5a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nTicketDetailedFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TicketDetailedFill;\n"
  },
  {
    "path": "src/icons/ticket-detailed.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TicketDetailed = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket-detailed', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 5.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5m0 5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5M5 7a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2z\" />\n        <path d=\"M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6zM1.5 4a.5.5 0 0 0-.5.5v1.05a2.5 2.5 0 0 1 0 4.9v1.05a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-1.05a2.5 2.5 0 0 1 0-4.9V4.5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nTicketDetailed.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TicketDetailed;\n"
  },
  {
    "path": "src/icons/ticket-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TicketFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 3A1.5 1.5 0 0 0 0 4.5V6a.5.5 0 0 0 .5.5 1.5 1.5 0 1 1 0 3 .5.5 0 0 0-.5.5v1.5A1.5 1.5 0 0 0 1.5 13h13a1.5 1.5 0 0 0 1.5-1.5V10a.5.5 0 0 0-.5-.5 1.5 1.5 0 0 1 0-3A.5.5 0 0 0 16 6V4.5A1.5 1.5 0 0 0 14.5 3z\" />\n      </svg>\n    );\n  },\n);\n\nTicketFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TicketFill;\n"
  },
  {
    "path": "src/icons/ticket-perforated-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TicketPerforatedFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket-perforated-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6zm4-1v1h1v-1zm1 3v-1H4v1zm7 0v-1h-1v1zm-1-2h1v-1h-1zm-6 3H4v1h1zm7 1v-1h-1v1zm-7 1H4v1h1zm7 1v-1h-1v1zm-8 1v1h1v-1zm7 1h1v-1h-1z\" />\n      </svg>\n    );\n  },\n);\n\nTicketPerforatedFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TicketPerforatedFill;\n"
  },
  {
    "path": "src/icons/ticket-perforated.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TicketPerforated = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket-perforated', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4 4.85v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9z\" />\n        <path d=\"M1.5 3A1.5 1.5 0 0 0 0 4.5V6a.5.5 0 0 0 .5.5 1.5 1.5 0 1 1 0 3 .5.5 0 0 0-.5.5v1.5A1.5 1.5 0 0 0 1.5 13h13a1.5 1.5 0 0 0 1.5-1.5V10a.5.5 0 0 0-.5-.5 1.5 1.5 0 0 1 0-3A.5.5 0 0 0 16 6V4.5A1.5 1.5 0 0 0 14.5 3zM1 4.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v1.05a2.5 2.5 0 0 0 0 4.9v1.05a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-1.05a2.5 2.5 0 0 0 0-4.9z\" />\n      </svg>\n    );\n  },\n);\n\nTicketPerforated.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TicketPerforated;\n"
  },
  {
    "path": "src/icons/ticket.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ticket = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ticket', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6zM1.5 4a.5.5 0 0 0-.5.5v1.05a2.5 2.5 0 0 1 0 4.9v1.05a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-1.05a2.5 2.5 0 0 1 0-4.9V4.5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nTicket.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ticket;\n"
  },
  {
    "path": "src/icons/tiktok.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tiktok = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tiktok', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 0h1.98c.144.715.54 1.617 1.235 2.512C12.895 3.389 13.797 4 15 4v2c-1.753 0-3.07-.814-4-1.829V11a5 5 0 1 1-5-5v2a3 3 0 1 0 3 3z\" />\n      </svg>\n    );\n  },\n);\n\nTiktok.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tiktok;\n"
  },
  {
    "path": "src/icons/toggle-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ToggleOff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggle-off', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 4a4 4 0 0 1 0 8H8a5 5 0 0 0 2-4 5 5 0 0 0-2-4zm-6 8a4 4 0 1 1 0-8 4 4 0 0 1 0 8M0 8a5 5 0 0 0 5 5h6a5 5 0 0 0 0-10H5a5 5 0 0 0-5 5\" />\n      </svg>\n    );\n  },\n);\n\nToggleOff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ToggleOff;\n"
  },
  {
    "path": "src/icons/toggle-on.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ToggleOn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggle-on', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 3a5 5 0 0 0 0 10h6a5 5 0 0 0 0-10zm6 9a4 4 0 1 1 0-8 4 4 0 0 1 0 8\" />\n      </svg>\n    );\n  },\n);\n\nToggleOn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ToggleOn;\n"
  },
  {
    "path": "src/icons/toggle2-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Toggle2Off = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggle2-off', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 11c.628-.836 1-1.874 1-3a4.98 4.98 0 0 0-1-3h4a3 3 0 1 1 0 6z\" />\n        <path d=\"M5 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8m0 1A5 5 0 1 0 5 3a5 5 0 0 0 0 10\" />\n      </svg>\n    );\n  },\n);\n\nToggle2Off.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Toggle2Off;\n"
  },
  {
    "path": "src/icons/toggle2-on.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Toggle2On = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggle2-on', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 5H3a3 3 0 0 0 0 6h4a5 5 0 0 1-.584-1H3a2 2 0 1 1 0-4h3.416q.235-.537.584-1\" />\n        <path d=\"M16 8A5 5 0 1 1 6 8a5 5 0 0 1 10 0\" />\n      </svg>\n    );\n  },\n);\n\nToggle2On.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Toggle2On;\n"
  },
  {
    "path": "src/icons/toggles.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Toggles = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggles', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 9a3.5 3.5 0 1 0 0 7h7a3.5 3.5 0 1 0 0-7zm7 6a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5m-7-14a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5m2.45 0A3.5 3.5 0 0 1 8 3.5 3.5 3.5 0 0 1 6.95 6h4.55a2.5 2.5 0 0 0 0-5zM4.5 0h7a3.5 3.5 0 1 1 0 7h-7a3.5 3.5 0 1 1 0-7\" />\n      </svg>\n    );\n  },\n);\n\nToggles.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Toggles;\n"
  },
  {
    "path": "src/icons/toggles2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Toggles2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-toggles2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.465 10H12a2 2 0 1 1 0 4H9.465c.34-.588.535-1.271.535-2s-.195-1.412-.535-2\" />\n        <path d=\"M6 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8m.535-10a4 4 0 0 1-.409-1H4a1 1 0 0 1 0-2h2.126q.138-.534.41-1H4a2 2 0 1 0 0 4z\" />\n        <path d=\"M14 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0\" />\n      </svg>\n    );\n  },\n);\n\nToggles2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Toggles2;\n"
  },
  {
    "path": "src/icons/tools.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tools = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tools', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1 0 0 1l2.2 3.081a1 1 0 0 0 .815.419h.07a1 1 0 0 1 .708.293l2.675 2.675-2.617 2.654A3.003 3.003 0 0 0 0 13a3 3 0 1 0 5.878-.851l2.654-2.617.968.968-.305.914a1 1 0 0 0 .242 1.023l3.27 3.27a.997.997 0 0 0 1.414 0l1.586-1.586a.997.997 0 0 0 0-1.414l-3.27-3.27a1 1 0 0 0-1.023-.242L10.5 9.5l-.96-.96 2.68-2.643A3.005 3.005 0 0 0 16 3q0-.405-.102-.777l-2.14 2.141L12 4l-.364-1.757L13.777.102a3 3 0 0 0-3.675 3.68L7.462 6.46 4.793 3.793a1 1 0 0 1-.293-.707v-.071a1 1 0 0 0-.419-.814zm9.646 10.646a.5.5 0 0 1 .708 0l2.914 2.915a.5.5 0 0 1-.707.707l-2.915-2.914a.5.5 0 0 1 0-.708M3 11l.471.242.529.026.287.445.445.287.026.529L5 13l-.242.471-.026.529-.445.287-.287.445-.529.026L3 15l-.471-.242L2 14.732l-.287-.445L1.268 14l-.026-.529L1 13l.242-.471.026-.529.445-.287.287-.445.529-.026z\" />\n      </svg>\n    );\n  },\n);\n\nTools.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tools;\n"
  },
  {
    "path": "src/icons/tornado.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tornado = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tornado', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.125 2.45A.9.9 0 0 1 1 2c0-.26.116-.474.258-.634a1.9 1.9 0 0 1 .513-.389c.387-.21.913-.385 1.52-.525C4.514.17 6.18 0 8 0c1.821 0 3.486.17 4.709.452.607.14 1.133.314 1.52.525.193.106.374.233.513.389.141.16.258.374.258.634 0 1.011-.35 1.612-.634 2.102l-.116.203a2.6 2.6 0 0 0-.313.809 3 3 0 0 0-.011.891.5.5 0 0 1 .428.849q-.091.09-.215.195c.204 1.116.088 1.99-.3 2.711-.453.84-1.231 1.383-2.02 1.856q-.307.183-.62.364c-1.444.832-2.928 1.689-3.735 3.706a.5.5 0 0 1-.748.226l-.001-.001-.002-.001-.004-.003-.01-.008a2 2 0 0 1-.147-.115 4.1 4.1 0 0 1-1.179-1.656 3.8 3.8 0 0 1-.247-1.296A.5.5 0 0 1 5 12.5v-.018l.008-.079a.73.73 0 0 1 .188-.386c.09-.489.272-1.014.573-1.574a.5.5 0 0 1 .073-.918 3.3 3.3 0 0 1 .617-.144l.15-.193c.285-.356.404-.639.437-.861a.95.95 0 0 0-.122-.619c-.249-.455-.815-.903-1.613-1.43q-.291-.19-.609-.394l-.119-.076a12 12 0 0 1-1.241-.334.5.5 0 0 1-.285-.707l-.23-.18C2.117 4.01 1.463 3.32 1.125 2.45m1.973 1.051q.17.156.358.308c.472.381.99.722 1.515 1.06 1.54.317 3.632.5 5.43.14a.5.5 0 0 1 .197.981c-1.216.244-2.537.26-3.759.157.399.326.744.682.963 1.081.203.373.302.79.233 1.247q-.077.494-.39.985l.22.053.006.002c.481.12.863.213 1.47.01a.5.5 0 1 1 .317.95c-.888.295-1.505.141-2.023.012l-.006-.002a4 4 0 0 0-.644-.123c-.37.55-.598 1.05-.726 1.497q.212.068.465.194a.5.5 0 1 1-.448.894 3 3 0 0 0-.148-.07c.012.345.084.643.18.895.14.369.342.666.528.886.992-1.903 2.583-2.814 3.885-3.56q.305-.173.584-.34c.775-.464 1.34-.89 1.653-1.472.212-.393.33-.9.26-1.617A6.74 6.74 0 0 1 10 8.5a.5.5 0 0 1 0-1 5.76 5.76 0 0 0 3.017-.872l-.007-.03c-.135-.673-.14-1.207-.056-1.665.084-.46.253-.81.421-1.113l.131-.23q.098-.167.182-.327c-.29.107-.62.202-.98.285C11.487 3.83 9.822 4 8 4c-1.821 0-3.486-.17-4.709-.452q-.098-.022-.193-.047M13.964 2a1 1 0 0 0-.214-.145c-.272-.148-.697-.297-1.266-.428C11.354 1.166 9.769 1 8 1s-3.354.166-4.484.427c-.569.13-.994.28-1.266.428A1 1 0 0 0 2.036 2q.058.058.214.145c.272.148.697.297 1.266.428C4.646 2.834 6.231 3 8 3s3.354-.166 4.484-.427c.569-.13.994-.28 1.266-.428A1 1 0 0 0 13.964 2\" />\n      </svg>\n    );\n  },\n);\n\nTornado.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tornado;\n"
  },
  {
    "path": "src/icons/train-freight-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainFreightFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-freight-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.736 0a1.5 1.5 0 0 0-.67.158L1.828 1.776A1.5 1.5 0 0 0 1 3.118v5.51l2-.6V5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3.028l2 .6v-5.51a1.5 1.5 0 0 0-.83-1.342L10.936.158A1.5 1.5 0 0 0 10.264 0zM15 9.672l-5.503-1.65A.5.5 0 0 0 9.353 8H8.5v8h4a2.5 2.5 0 0 0 2.5-2.5zM7.5 16V8h-.853a.5.5 0 0 0-.144.021L1 9.672V13.5A2.5 2.5 0 0 0 3.5 16zm-1-14h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1M12 5v2.728l-2.216-.665A1.5 1.5 0 0 0 9.354 7H8.5V5zM7.5 5v2h-.853a1.5 1.5 0 0 0-.431.063L4 7.728V5zm-4 5a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1m9 0a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1M5 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nTrainFreightFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainFreightFrontFill;\n"
  },
  {
    "path": "src/icons/train-freight-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainFreightFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-freight-front', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.065.158A1.5 1.5 0 0 1 5.736 0h4.528a1.5 1.5 0 0 1 .67.158l3.237 1.618a1.5 1.5 0 0 1 .83 1.342V13.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5V3.118a1.5 1.5 0 0 1 .828-1.342zM2 9.372V13.5A1.5 1.5 0 0 0 3.5 15h4V8h-.853a.5.5 0 0 0-.144.021zM8.5 15h4a1.5 1.5 0 0 0 1.5-1.5V9.372l-4.503-1.35A.5.5 0 0 0 9.353 8H8.5zM14 8.328v-5.21a.5.5 0 0 0-.276-.447l-3.236-1.618A.5.5 0 0 0 10.264 1H5.736a.5.5 0 0 0-.223.053L2.277 2.67A.5.5 0 0 0 2 3.118v5.21l1-.3V5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3.028zm-2-.6V5H8.5v2h.853a1.5 1.5 0 0 1 .431.063zM7.5 7V5H4v2.728l2.216-.665A1.5 1.5 0 0 1 6.646 7zm-1-5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm-3 8a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1m9 0a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1M5 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" />\n      </svg>\n    );\n  },\n);\n\nTrainFreightFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainFreightFront;\n"
  },
  {
    "path": "src/icons/train-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.621.515C8.647.02 7.353.02 5.38.515c-.924.23-1.982.766-2.78 1.22C1.566 2.322 1 3.432 1 4.582V13.5A2.5 2.5 0 0 0 3.5 16h9a2.5 2.5 0 0 0 2.5-2.5V4.583c0-1.15-.565-2.26-1.6-2.849-.797-.453-1.855-.988-2.779-1.22ZM6.5 2h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1m-2 2h7A1.5 1.5 0 0 1 13 5.5v2A1.5 1.5 0 0 1 11.5 9h-7A1.5 1.5 0 0 1 3 7.5v-2A1.5 1.5 0 0 1 4.5 4m.5 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0m0 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0m8 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3-1a1 1 0 1 1 0 2 1 1 0 0 1 0-2M4 5.5a.5.5 0 0 1 .5-.5h3v3h-3a.5.5 0 0 1-.5-.5zM8.5 8V5h3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5z\" />\n      </svg>\n    );\n  },\n);\n\nTrainFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainFrontFill;\n"
  },
  {
    "path": "src/icons/train-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-front', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.621 1.485c1.815-.454 2.943-.454 4.758 0 .784.196 1.743.673 2.527 1.119.688.39 1.094 1.148 1.094 1.979V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V4.583c0-.831.406-1.588 1.094-1.98.784-.445 1.744-.922 2.527-1.118m5-.97C8.647.02 7.353.02 5.38.515c-.924.23-1.982.766-2.78 1.22C1.566 2.322 1 3.432 1 4.582V13.5A2.5 2.5 0 0 0 3.5 16h9a2.5 2.5 0 0 0 2.5-2.5V4.583c0-1.15-.565-2.26-1.6-2.849-.797-.453-1.855-.988-2.779-1.22ZM5 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0m0 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0m7 1a1 1 0 1 0-1-1 1 1 0 1 0-2 0 1 1 0 0 0 2 0 1 1 0 0 0 1 1M4.5 5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h3V5zm4 0v3h3a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5zM3 5.5A1.5 1.5 0 0 1 4.5 4h7A1.5 1.5 0 0 1 13 5.5v2A1.5 1.5 0 0 1 11.5 9h-7A1.5 1.5 0 0 1 3 7.5zM6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z\" />\n      </svg>\n    );\n  },\n);\n\nTrainFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainFront;\n"
  },
  {
    "path": "src/icons/train-lightrail-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainLightrailFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-lightrail-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0a.5.5 0 0 0 0 1h1v1.011c-1.525.064-3.346.394-4.588.655C1.775 2.904 1 3.915 1 5.055V13.5A2.5 2.5 0 0 0 3.5 16h9a2.5 2.5 0 0 0 2.5-2.5V5.055c0-1.14-.775-2.15-1.912-2.39-1.242-.26-3.063-.59-4.588-.654V1h1a.5.5 0 0 0 0-1zM8 4c1.136 0 2.645.2 3.604.346.825.126 1.356.9 1.244 1.697q-.034.24-.07.522C12.643 7.596 12.5 8.949 12.5 10c0 .428.024.933.062 1.464.066.93.174 1.92.266 2.682.042.34.08.634.109.854h-1.01a63 63 0 0 1-.327-3H9.354c-.36 0-.704-.143-.958-.396a.35.35 0 0 0-.25-.104h-.292a.35.35 0 0 0-.25.104 1.35 1.35 0 0 1-.958.396H4.4a63 63 0 0 1-.328 3H3.064c.029-.22.067-.514.108-.854.092-.761.2-1.752.266-2.682.038-.531.062-1.036.062-1.464 0-1.051-.143-2.404-.278-3.435l-.07-.522c-.112-.798.42-1.571 1.244-1.697C5.356 4.199 6.864 4 8 4m-1.354 7H4.47c.019-.353.03-.692.03-1 0-.927-.104-2.051-.216-3h7.432c-.112.949-.216 2.073-.216 3 0 .308.011.647.03 1H9.354a.35.35 0 0 1-.25-.104 1.35 1.35 0 0 0-.958-.396h-.292c-.36 0-.704.143-.958.396a.35.35 0 0 1-.25.104m5.199-5h-7.69l-.013-.096a.497.497 0 0 1 .405-.57C5.505 5.188 6.947 5 8 5s2.495.188 3.453.334a.497.497 0 0 1 .405.57zM6 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 0a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m4 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 0a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0\" />\n      </svg>\n    );\n  },\n);\n\nTrainLightrailFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainLightrailFrontFill;\n"
  },
  {
    "path": "src/icons/train-lightrail-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrainLightrailFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-train-lightrail-front', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 0a.5.5 0 0 0 0 1h1v1.011c-1.525.064-3.346.394-4.588.655C1.775 2.904 1 3.915 1 5.055V13.5A2.5 2.5 0 0 0 3.5 16h9a2.5 2.5 0 0 0 2.5-2.5V5.055c0-1.14-.775-2.15-1.912-2.39-1.242-.26-3.063-.59-4.588-.654V1h1a.5.5 0 0 0 0-1zM8 3c1.497 0 3.505.356 4.883.644.653.137 1.117.722 1.117 1.411V13.5a1.5 1.5 0 0 1-1.072 1.438 76 76 0 0 1-.1-.792c-.092-.761-.2-1.752-.266-2.682A21 21 0 0 1 12.5 10c0-1.051.143-2.404.278-3.435l.07-.522c.112-.798-.42-1.571-1.244-1.697C10.644 4.199 9.136 4 8 4s-2.645.2-3.604.346c-.825.126-1.356.9-1.244 1.697q.034.24.07.522C3.357 7.596 3.5 8.949 3.5 10c0 .428-.024.933-.062 1.464a57 57 0 0 1-.266 2.682c-.038.31-.072.58-.1.792A1.5 1.5 0 0 1 2 13.5V5.055c0-.69.464-1.274 1.117-1.41C4.495 3.354 6.503 3 8 3m3.835 11.266c.034.28.066.53.093.734H4.072a63 63 0 0 0 .328-3h2.246c.36 0 .704-.143.958-.396a.35.35 0 0 1 .25-.104h.292a.35.35 0 0 1 .25.104c.254.253.599.396.958.396H11.6c.068.808.158 1.621.236 2.266ZM6 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 0a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m3.5.5a.5.5 0 0 0 .5-.5.5.5 0 1 0 1 0 .5.5 0 0 0-1 0 .5.5 0 1 0-.5.5m-5.03-3c.019-.353.03-.692.03-1 0-.927-.104-2.051-.216-3h7.432c-.112.949-.216 2.073-.216 3 0 .308.011.647.03 1H9.354a.35.35 0 0 1-.25-.104 1.35 1.35 0 0 0-.958-.396h-.292c-.36 0-.704.143-.958.396a.35.35 0 0 1-.25.104zm-.315-5-.013-.096a.497.497 0 0 1 .405-.57C5.505 5.188 6.947 5 8 5s2.495.188 3.453.334a.497.497 0 0 1 .405.57L11.845 6z\" />\n      </svg>\n    );\n  },\n);\n\nTrainLightrailFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrainLightrailFront;\n"
  },
  {
    "path": "src/icons/translate.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Translate = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-translate', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286zm1.634-.736L5.5 3.956h-.049l-.679 2.022z\" />\n        <path d=\"M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm7.138 9.995q.289.451.63.846c-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6 6 0 0 1-.415-.492 2 2 0 0 1-.94.31\" />\n      </svg>\n    );\n  },\n);\n\nTranslate.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Translate;\n"
  },
  {
    "path": "src/icons/transparency.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Transparency = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-transparency', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6.5a6.5 6.5 0 0 1 12.346-2.846 6.5 6.5 0 1 1-8.691 8.691A6.5 6.5 0 0 1 0 6.5m5.144 6.358a5.5 5.5 0 1 0 7.714-7.714 6.5 6.5 0 0 1-7.714 7.714m-.733-1.269q.546.226 1.144.33l-1.474-1.474q.104.597.33 1.144m2.614.386a5.5 5.5 0 0 0 1.173-.242L4.374 7.91a6 6 0 0 0-.296 1.118zm2.157-.672q.446-.25.838-.576L5.418 6.126a6 6 0 0 0-.587.826zm1.545-1.284q.325-.39.576-.837L6.953 4.83a6 6 0 0 0-.827.587l4.6 4.602Zm1.006-1.822q.183-.562.242-1.172L9.028 4.078q-.58.096-1.118.296l3.823 3.824Zm.186-2.642a5.5 5.5 0 0 0-.33-1.144 5.5 5.5 0 0 0-1.144-.33z\" />\n      </svg>\n    );\n  },\n);\n\nTransparency.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Transparency;\n"
  },
  {
    "path": "src/icons/trash-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrashFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5M8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5m3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nTrashFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrashFill;\n"
  },
  {
    "path": "src/icons/trash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0z\" />\n        <path d=\"M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4zM2.5 3h11V2h-11z\" />\n      </svg>\n    );\n  },\n);\n\nTrash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trash;\n"
  },
  {
    "path": "src/icons/trash2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trash2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.037 3.225A.7.7 0 0 1 2 3c0-1.105 2.686-2 6-2s6 .895 6 2a.7.7 0 0 1-.037.225l-1.684 10.104A2 2 0 0 1 10.305 15H5.694a2 2 0 0 1-1.973-1.671zm9.89-.69C10.966 2.214 9.578 2 8 2c-1.58 0-2.968.215-3.926.534-.477.16-.795.327-.975.466.18.14.498.307.975.466C5.032 3.786 6.42 4 8 4s2.967-.215 3.926-.534c.477-.16.795-.327.975-.466-.18-.14-.498-.307-.975-.466z\" />\n      </svg>\n    );\n  },\n);\n\nTrash2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trash2Fill;\n"
  },
  {
    "path": "src/icons/trash2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trash2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 3a.7.7 0 0 1-.037.225l-1.684 10.104A2 2 0 0 1 10.305 15H5.694a2 2 0 0 1-1.973-1.671L2.037 3.225A.7.7 0 0 1 2 3c0-1.105 2.686-2 6-2s6 .895 6 2M3.215 4.207l1.493 8.957a1 1 0 0 0 .986.836h4.612a1 1 0 0 0 .986-.836l1.493-8.957C11.69 4.689 9.954 5 8 5s-3.69-.311-4.785-.793\" />\n      </svg>\n    );\n  },\n);\n\nTrash2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trash2;\n"
  },
  {
    "path": "src/icons/trash3-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trash3Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash3-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11 1.5v1h3.5a.5.5 0 0 1 0 1h-.538l-.853 10.66A2 2 0 0 1 11.115 16h-6.23a2 2 0 0 1-1.994-1.84L2.038 3.5H1.5a.5.5 0 0 1 0-1H5v-1A1.5 1.5 0 0 1 6.5 0h3A1.5 1.5 0 0 1 11 1.5m-5 0v1h4v-1a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5M4.5 5.029l.5 8.5a.5.5 0 1 0 .998-.06l-.5-8.5a.5.5 0 1 0-.998.06m6.53-.528a.5.5 0 0 0-.528.47l-.5 8.5a.5.5 0 0 0 .998.058l.5-8.5a.5.5 0 0 0-.47-.528M8 4.5a.5.5 0 0 0-.5.5v8.5a.5.5 0 0 0 1 0V5a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTrash3Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trash3Fill;\n"
  },
  {
    "path": "src/icons/trash3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trash3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trash3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.5 1h3a.5.5 0 0 1 .5.5v1H6v-1a.5.5 0 0 1 .5-.5M11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3A1.5 1.5 0 0 0 5 1.5v1H1.5a.5.5 0 0 0 0 1h.538l.853 10.66A2 2 0 0 0 4.885 16h6.23a2 2 0 0 0 1.994-1.84l.853-10.66h.538a.5.5 0 0 0 0-1zm1.958 1-.846 10.58a1 1 0 0 1-.997.92h-6.23a1 1 0 0 1-.997-.92L3.042 3.5zm-7.487 1a.5.5 0 0 1 .528.47l.5 8.5a.5.5 0 0 1-.998.06L5 5.03a.5.5 0 0 1 .47-.53Zm5.058 0a.5.5 0 0 1 .47.53l-.5 8.5a.5.5 0 1 1-.998-.06l.5-8.5a.5.5 0 0 1 .528-.47M8 4.5a.5.5 0 0 1 .5.5v8.5a.5.5 0 0 1-1 0V5a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nTrash3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trash3;\n"
  },
  {
    "path": "src/icons/tree-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TreeFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tree-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777z\" />\n      </svg>\n    );\n  },\n);\n\nTreeFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TreeFill;\n"
  },
  {
    "path": "src/icons/tree.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tree = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tree', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777zM6.437 4.758A.5.5 0 0 0 6 4.5h-.066L8 1.401 10.066 4.5H10a.5.5 0 0 0-.424.765L11.598 8.5H11.5a.5.5 0 0 0-.447.724L12.69 12.5H3.309l1.638-3.276A.5.5 0 0 0 4.5 8.5h-.098l2.022-3.235a.5.5 0 0 0 .013-.507\" />\n      </svg>\n    );\n  },\n);\n\nTree.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tree;\n"
  },
  {
    "path": "src/icons/trello.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trello = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trello', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14.1 0H1.903C.852 0 .002.85 0 1.9v12.19A1.9 1.9 0 0 0 1.902 16h12.199A1.9 1.9 0 0 0 16 14.09V1.9A1.9 1.9 0 0 0 14.1 0M7 11.367a.636.636 0 0 1-.64.633H3.593a.633.633 0 0 1-.63-.633V3.583c0-.348.281-.631.63-.633h2.765c.35.002.632.284.633.633zm6.052-3.5a.633.633 0 0 1-.64.633h-2.78A.636.636 0 0 1 9 7.867V3.583a.636.636 0 0 1 .633-.633h2.778c.35.002.631.285.631.633z\" />\n      </svg>\n    );\n  },\n);\n\nTrello.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trello;\n"
  },
  {
    "path": "src/icons/triangle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TriangleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-triangle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M7.022 1.566a1.13 1.13 0 0 1 1.96 0l6.857 11.667c.457.778-.092 1.767-.98 1.767H1.144c-.889 0-1.437-.99-.98-1.767z\"\n        />\n      </svg>\n    );\n  },\n);\n\nTriangleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TriangleFill;\n"
  },
  {
    "path": "src/icons/triangle-half.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TriangleHalf = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-triangle-half', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.065 2.016A.13.13 0 0 0 8.002 2v11.983l6.856.017a.12.12 0 0 0 .066-.017.2.2 0 0 0 .054-.06.18.18 0 0 0-.002-.183L8.12 2.073a.15.15 0 0 0-.054-.057zm-1.043-.45a1.13 1.13 0 0 1 1.96 0l6.856 11.667c.458.778-.091 1.767-.98 1.767H1.146c-.889 0-1.437-.99-.98-1.767z\" />\n      </svg>\n    );\n  },\n);\n\nTriangleHalf.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TriangleHalf;\n"
  },
  {
    "path": "src/icons/triangle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Triangle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-triangle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.938 2.016A.13.13 0 0 1 8.002 2a.13.13 0 0 1 .063.016.15.15 0 0 1 .054.057l6.857 11.667c.036.06.035.124.002.183a.2.2 0 0 1-.054.06.1.1 0 0 1-.066.017H1.146a.1.1 0 0 1-.066-.017.2.2 0 0 1-.054-.06.18.18 0 0 1 .002-.183L7.884 2.073a.15.15 0 0 1 .054-.057m1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767z\" />\n      </svg>\n    );\n  },\n);\n\nTriangle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Triangle;\n"
  },
  {
    "path": "src/icons/trophy-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TrophyFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trophy-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5q0 .807-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33 33 0 0 1 2.5.5m.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935m10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935\" />\n      </svg>\n    );\n  },\n);\n\nTrophyFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TrophyFill;\n"
  },
  {
    "path": "src/icons/trophy.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Trophy = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-trophy', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5q0 .807-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33 33 0 0 1 2.5.5m.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935m10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935M3.504 1q.01.775.056 1.469c.13 2.028.457 3.546.87 4.667C5.294 9.48 6.484 10 7 10a.5.5 0 0 1 .5.5v2.61a1 1 0 0 1-.757.97l-1.426.356a.5.5 0 0 0-.179.085L4.5 15h7l-.638-.479a.5.5 0 0 0-.18-.085l-1.425-.356a1 1 0 0 1-.757-.97V10.5A.5.5 0 0 1 9 10c.516 0 1.706-.52 2.57-2.864.413-1.12.74-2.64.87-4.667q.045-.694.056-1.469z\" />\n      </svg>\n    );\n  },\n);\n\nTrophy.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Trophy;\n"
  },
  {
    "path": "src/icons/tropical-storm.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TropicalStorm = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tropical-storm', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" />\n        <path d=\"M9.5 2c-.9 0-1.75.216-2.501.6A5 5 0 0 1 13 7.5a6.5 6.5 0 1 1-13 0 .5.5 0 0 1 1 0 5.5 5.5 0 0 0 8.001 4.9A5 5 0 0 1 3 7.5a6.5 6.5 0 0 1 13 0 .5.5 0 0 1-1 0A5.5 5.5 0 0 0 9.5 2M8 3.5a4 4 0 1 0 0 8 4 4 0 0 0 0-8\" />\n      </svg>\n    );\n  },\n);\n\nTropicalStorm.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TropicalStorm;\n"
  },
  {
    "path": "src/icons/truck-flatbed.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TruckFlatbed = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-truck-flatbed', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.5 4a.5.5 0 0 1 .5.5V5h1.02a1.5 1.5 0 0 1 1.17.563l1.481 1.85a1.5 1.5 0 0 1 .329.938V10.5a1.5 1.5 0 0 1-1.5 1.5H14a2 2 0 1 1-4 0H5a2 2 0 1 1-4 0 1 1 0 0 1-1-1v-1h11V4.5a.5.5 0 0 1 .5-.5M3 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2m9 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2m1.732 0h.768a.5.5 0 0 0 .5-.5V8.35a.5.5 0 0 0-.11-.312l-1.48-1.85A.5.5 0 0 0 13.02 6H12v4a2 2 0 0 1 1.732 1\" />\n      </svg>\n    );\n  },\n);\n\nTruckFlatbed.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TruckFlatbed;\n"
  },
  {
    "path": "src/icons/truck-front-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TruckFrontFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-truck-front-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 0A2.5 2.5 0 0 0 1 2.5v9c0 .818.393 1.544 1 2v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5V14h6v1.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2c.607-.456 1-1.182 1-2v-9A2.5 2.5 0 0 0 12.5 0zM3 3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3.9c0 .625-.562 1.092-1.17.994C10.925 7.747 9.208 7.5 8 7.5s-2.925.247-3.83.394A1.008 1.008 0 0 1 3 6.9zm1 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2m8 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2m-5-2h2a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2\" />\n      </svg>\n    );\n  },\n);\n\nTruckFrontFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TruckFrontFill;\n"
  },
  {
    "path": "src/icons/truck-front.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TruckFront = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-truck-front', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0m8 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-6-1a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2zM4 2a1 1 0 0 0-1 1v3.9c0 .625.562 1.092 1.17.994C5.075 7.747 6.792 7.5 8 7.5s2.925.247 3.83.394A1.008 1.008 0 0 0 13 6.9V3a1 1 0 0 0-1-1zm0 1h8v3.9q0 .002 0 0l-.002.004-.005.002h-.004C11.088 6.761 9.299 6.5 8 6.5s-3.088.26-3.99.406h-.003l-.005-.002L4 6.9q0 .002 0 0z\" />\n        <path d=\"M1 2.5A2.5 2.5 0 0 1 3.5 0h9A2.5 2.5 0 0 1 15 2.5v9c0 .818-.393 1.544-1 2v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V14H5v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-2a2.5 2.5 0 0 1-1-2zM3.5 1A1.5 1.5 0 0 0 2 2.5v9A1.5 1.5 0 0 0 3.5 13h9a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 12.5 1z\" />\n      </svg>\n    );\n  },\n);\n\nTruckFront.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TruckFront;\n"
  },
  {
    "path": "src/icons/truck.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Truck = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-truck', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3.5A1.5 1.5 0 0 1 1.5 2h9A1.5 1.5 0 0 1 12 3.5V5h1.02a1.5 1.5 0 0 1 1.17.563l1.481 1.85a1.5 1.5 0 0 1 .329.938V10.5a1.5 1.5 0 0 1-1.5 1.5H14a2 2 0 1 1-4 0H5a2 2 0 1 1-3.998-.085A1.5 1.5 0 0 1 0 10.5zm1.294 7.456A2 2 0 0 1 4.732 11h5.536a2 2 0 0 1 .732-.732V3.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .294.456M12 10a2 2 0 0 1 1.732 1h.768a.5.5 0 0 0 .5-.5V8.35a.5.5 0 0 0-.11-.312l-1.48-1.85A.5.5 0 0 0 13.02 6H12zm-9 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2m9 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2\" />\n      </svg>\n    );\n  },\n);\n\nTruck.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Truck;\n"
  },
  {
    "path": "src/icons/tsunami.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tsunami = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tsunami', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.036 12.314a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.757-.703a.5.5 0 0 1-.278-.65m0 2a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.757-.703a.5.5 0 0 1-.278-.65M2.662 8.08c-.456 1.063-.994 2.098-1.842 2.804a.5.5 0 0 1-.64-.768c.652-.544 1.114-1.384 1.564-2.43.14-.328.281-.68.427-1.044.302-.754.624-1.559 1.01-2.308C3.763 3.2 4.528 2.105 5.7 1.299 6.877.49 8.418 0 10.5 0c1.463 0 2.511.4 3.179 1.058.67.66.893 1.518.819 2.302-.074.771-.441 1.516-1.02 1.965a1.88 1.88 0 0 1-1.904.27c-.65.642-.907 1.679-.71 2.614C11.076 9.215 11.784 10 13 10h2.5a.5.5 0 0 1 0 1H13c-1.784 0-2.826-1.215-3.114-2.585-.232-1.1.005-2.373.758-3.284L10.5 5.06l-.777.388a.5.5 0 0 1-.447 0l-1-.5a.5.5 0 0 1 .447-.894l.777.388.776-.388a.5.5 0 0 1 .447 0l1 .5.034.018c.44.264.81.195 1.108-.036.328-.255.586-.729.637-1.27.05-.529-.1-1.076-.525-1.495s-1.19-.77-2.477-.77c-1.918 0-3.252.448-4.232 1.123C5.283 2.8 4.61 3.738 4.07 4.79c-.365.71-.655 1.433-.945 2.16-.15.376-.301.753-.463 1.13\" />\n      </svg>\n    );\n  },\n);\n\nTsunami.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tsunami;\n"
  },
  {
    "path": "src/icons/tux.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tux = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tux', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.996 4.497c.104-.076.1-.168.186-.158s.022.102-.098.207c-.12.104-.308.243-.46.323-.291.152-.631.336-.993.336s-.647-.167-.853-.33c-.102-.082-.186-.162-.248-.221-.11-.086-.096-.207-.052-.204.075.01.087.109.134.153.064.06.144.137.241.214.195.154.454.304.778.304s.702-.19.932-.32c.13-.073.297-.204.433-.304M7.34 3.781c.055-.02.123-.031.174-.003.011.006.024.021.02.034-.012.038-.074.032-.11.05-.032.017-.057.052-.093.054-.034 0-.086-.012-.09-.046-.007-.044.058-.072.1-.089m.581-.003c.05-.028.119-.018.173.003.041.017.106.045.1.09-.004.033-.057.046-.09.045-.036-.002-.062-.037-.093-.053-.036-.019-.098-.013-.11-.051-.004-.013.008-.028.02-.034\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8.446.019c2.521.003 2.38 2.66 2.364 4.093-.01.939.509 1.574 1.04 2.244.474.56 1.095 1.38 1.45 2.32.29.765.402 1.613.115 2.465a.8.8 0 0 1 .254.152l.001.002c.207.175.271.447.329.698.058.252.112.488.224.615.344.382.494.667.48.922-.015.254-.203.43-.435.57-.465.28-1.164.491-1.586 1.002-.443.527-.99.83-1.505.871a1.25 1.25 0 0 1-1.256-.716v-.001a1 1 0 0 1-.078-.21c-.67.038-1.252-.165-1.718-.128-.687.038-1.116.204-1.506.206-.151.331-.445.547-.808.63-.5.114-1.126 0-1.743-.324-.577-.306-1.31-.278-1.85-.39-.27-.057-.51-.157-.626-.384-.116-.226-.095-.538.07-.988.051-.16.012-.398-.026-.648a2.5 2.5 0 0 1-.037-.369c0-.133.022-.265.087-.386v-.002c.14-.266.368-.377.577-.451s.397-.125.53-.258c.143-.15.27-.374.443-.56q.036-.037.073-.07c-.081-.538.007-1.105.192-1.662.393-1.18 1.223-2.314 1.811-3.014.502-.713.65-1.287.701-2.016.042-.997-.705-3.974 2.112-4.2q.168-.015.321-.013m2.596 10.866-.03.016c-.223.121-.348.337-.427.656-.08.32-.107.733-.13 1.206v.001c-.023.37-.192.824-.31 1.267s-.176.862-.036 1.128v.002c.226.452.608.636 1.051.601s.947-.304 1.36-.795c.474-.576 1.218-.796 1.638-1.05.21-.126.324-.242.333-.4.009-.157-.097-.403-.425-.767-.17-.192-.217-.462-.274-.71-.056-.247-.122-.468-.26-.585l-.001-.001c-.18-.157-.356-.17-.565-.164q-.069.001-.14.005c-.239.275-.805.612-1.197.508-.359-.09-.562-.508-.587-.918m-7.204.03H3.83c-.189.002-.314.09-.44.225-.149.158-.276.382-.445.56v.002h-.002c-.183.184-.414.239-.61.31-.195.069-.353.143-.46.35v.002c-.085.155-.066.378-.029.624.038.245.096.507.018.746v.002l-.001.002c-.157.427-.155.678-.082.822.074.143.235.22.48.272.493.103 1.26.069 1.906.41.583.305 1.168.404 1.598.305.431-.098.712-.369.75-.867v-.002c.029-.292-.195-.673-.485-1.052-.29-.38-.633-.752-.795-1.09v-.002l-.61-1.11c-.21-.286-.43-.462-.68-.5a1 1 0 0 0-.106-.008M9.584 4.85c-.14.2-.386.37-.695.467-.147.048-.302.17-.495.28a1.3 1.3 0 0 1-.74.19.97.97 0 0 1-.582-.227c-.14-.113-.25-.237-.394-.322a3 3 0 0 1-.192-.126c-.063 1.179-.85 2.658-1.226 3.511a5.4 5.4 0 0 0-.43 1.917c-.68-.906-.184-2.066.081-2.568.297-.55.343-.701.27-.649-.266.436-.685 1.13-.848 1.844-.085.372-.1.749.01 1.097.11.349.345.67.766.931.573.351.963.703 1.193 1.015s.302.584.23.777a.4.4 0 0 1-.212.22.7.7 0 0 1-.307.056l.184.235c.094.124.186.249.266.375 1.179.805 2.567.496 3.568-.218.1-.342.197-.664.212-.903.024-.474.05-.896.136-1.245s.244-.634.53-.791a1 1 0 0 1 .138-.061q.005-.045.013-.087c.082-.546.569-.572 1.18-.303.588.266.81.499.71.814h.13c.122-.398-.133-.69-.822-1.025l-.137-.06a2.35 2.35 0 0 0-.012-1.113c-.188-.79-.704-1.49-1.098-1.838-.072-.003-.065.06.081.203.363.333 1.156 1.532.727 2.644a1.2 1.2 0 0 0-.342-.043c-.164-.907-.543-1.66-.735-2.014-.359-.668-.918-2.036-1.158-2.983M7.72 3.503a1 1 0 0 0-.312.053c-.268.093-.447.286-.559.391-.022.021-.05.04-.119.091s-.172.126-.321.238q-.198.151-.13.38c.046.15.192.325.459.476.166.098.28.23.41.334a1 1 0 0 0 .215.133.9.9 0 0 0 .298.066c.282.017.49-.068.673-.173s.34-.233.518-.29c.365-.115.627-.345.709-.564a.37.37 0 0 0-.01-.309c-.048-.096-.148-.187-.318-.257h-.001c-.354-.151-.507-.162-.705-.29-.321-.207-.587-.28-.807-.279m-.89-1.122h-.025a.4.4 0 0 0-.278.135.76.76 0 0 0-.191.334 1.2 1.2 0 0 0-.051.445v.001c.01.162.041.299.102.436.05.116.109.204.183.274l.089-.065.117-.09-.023-.018a.4.4 0 0 1-.11-.161.7.7 0 0 1-.054-.22v-.01a.7.7 0 0 1 .014-.234.4.4 0 0 1 .08-.179q.056-.069.126-.073h.013a.18.18 0 0 1 .123.05c.045.04.08.09.11.162a.7.7 0 0 1 .054.22v.01a.7.7 0 0 1-.002.17 1.1 1.1 0 0 1 .317-.143 1.3 1.3 0 0 0 .002-.194V3.23a1.2 1.2 0 0 0-.102-.437.8.8 0 0 0-.227-.31.4.4 0 0 0-.268-.102m1.95-.155a.63.63 0 0 0-.394.14.9.9 0 0 0-.287.376 1.2 1.2 0 0 0-.1.51v.015q0 .079.01.152c.114.027.278.074.406.138a1 1 0 0 1-.011-.172.8.8 0 0 1 .058-.278.5.5 0 0 1 .139-.2.26.26 0 0 1 .182-.069.26.26 0 0 1 .178.081c.055.054.094.12.124.21.029.086.042.17.04.27l-.002.012a.8.8 0 0 1-.057.277c-.024.059-.089.106-.122.145.046.016.09.03.146.052a5 5 0 0 1 .248.102 1.2 1.2 0 0 0 .244-.763 1.2 1.2 0 0 0-.11-.495.9.9 0 0 0-.294-.37.64.64 0 0 0-.39-.133z\"\n        />\n      </svg>\n    );\n  },\n);\n\nTux.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tux;\n"
  },
  {
    "path": "src/icons/tv-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TvFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tv-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 13.5A.5.5 0 0 1 3 13h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5M2 2h12s2 0 2 2v6s0 2-2 2H2s-2 0-2-2V4s0-2 2-2\" />\n      </svg>\n    );\n  },\n);\n\nTvFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TvFill;\n"
  },
  {
    "path": "src/icons/tv.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Tv = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-tv', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 13.5A.5.5 0 0 1 3 13h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5M13.991 3l.024.001a1.5 1.5 0 0 1 .538.143.76.76 0 0 1 .302.254c.067.1.145.277.145.602v5.991l-.001.024a1.5 1.5 0 0 1-.143.538.76.76 0 0 1-.254.302c-.1.067-.277.145-.602.145H2.009l-.024-.001a1.5 1.5 0 0 1-.538-.143.76.76 0 0 1-.302-.254C1.078 10.502 1 10.325 1 10V4.009l.001-.024a1.5 1.5 0 0 1 .143-.538.76.76 0 0 1 .254-.302C1.498 3.078 1.675 3 2 3zM14 2H2C0 2 0 4 0 4v6c0 2 2 2 2 2h12c2 0 2-2 2-2V4c0-2-2-2-2-2\" />\n      </svg>\n    );\n  },\n);\n\nTv.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Tv;\n"
  },
  {
    "path": "src/icons/twitch.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Twitch = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-twitch', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.857 0 1 2.857v10.286h3.429V16l2.857-2.857H9.57L14.714 8V0zm9.714 7.429-2.285 2.285H9l-2 2v-2H4.429V1.143h9.142z\" />\n        <path d=\"M11.857 3.143h-1.143V6.57h1.143zm-3.143 0H7.571V6.57h1.143z\" />\n      </svg>\n    );\n  },\n);\n\nTwitch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Twitch;\n"
  },
  {
    "path": "src/icons/twitter-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TwitterX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-twitter-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z\" />\n      </svg>\n    );\n  },\n);\n\nTwitterX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TwitterX;\n"
  },
  {
    "path": "src/icons/twitter.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Twitter = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-twitter', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.026 15c6.038 0 9.341-5.003 9.341-9.334q.002-.211-.006-.422A6.7 6.7 0 0 0 16 3.542a6.7 6.7 0 0 1-1.889.518 3.3 3.3 0 0 0 1.447-1.817 6.5 6.5 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.32 9.32 0 0 1-6.767-3.429 3.29 3.29 0 0 0 1.018 4.382A3.3 3.3 0 0 1 .64 6.575v.045a3.29 3.29 0 0 0 2.632 3.218 3.2 3.2 0 0 1-.865.115 3 3 0 0 1-.614-.057 3.28 3.28 0 0 0 3.067 2.277A6.6 6.6 0 0 1 .78 13.58a6 6 0 0 1-.78-.045A9.34 9.34 0 0 0 5.026 15\" />\n      </svg>\n    );\n  },\n);\n\nTwitter.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Twitter;\n"
  },
  {
    "path": "src/icons/type-bold.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeBold = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-bold', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.21 13c2.106 0 3.412-1.087 3.412-2.823 0-1.306-.984-2.283-2.324-2.386v-.055a2.176 2.176 0 0 0 1.852-2.14c0-1.51-1.162-2.46-3.014-2.46H3.843V13zM5.908 4.674h1.696c.963 0 1.517.451 1.517 1.244 0 .834-.629 1.32-1.73 1.32H5.908V4.673zm0 6.788V8.598h1.73c1.217 0 1.88.492 1.88 1.415 0 .943-.643 1.449-1.832 1.449H5.907z\" />\n      </svg>\n    );\n  },\n);\n\nTypeBold.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeBold;\n"
  },
  {
    "path": "src/icons/type-h1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h1', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.648 13V3H6.3v4.234H1.348V3H0v10h1.348V8.421H6.3V13zM14 13V3h-1.333l-2.381 1.766V6.12L12.6 4.443h.066V13z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH1;\n"
  },
  {
    "path": "src/icons/type-h2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.495 13V3.201H6.174v4.15H1.32V3.2H0V13h1.32V8.513h4.854V13zm3.174-7.071v-.05c0-.934.66-1.752 1.801-1.752 1.005 0 1.76.639 1.76 1.651 0 .898-.582 1.58-1.12 2.19l-3.69 4.2V13h6.331v-1.149h-4.458v-.079L13.9 8.786c.919-1.048 1.666-1.874 1.666-3.101C15.565 4.149 14.35 3 12.499 3 10.46 3 9.384 4.393 9.384 5.879v.05z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH2;\n"
  },
  {
    "path": "src/icons/type-h3.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH3 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h3', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.07 8.4h1.049c1.174 0 1.99.69 2.004 1.724s-.802 1.786-2.068 1.779c-1.11-.007-1.905-.605-1.99-1.357h-1.21C8.926 11.91 10.116 13 12.028 13c1.99 0 3.439-1.188 3.404-2.87-.028-1.553-1.287-2.221-2.096-2.313v-.07c.724-.127 1.814-.935 1.772-2.293-.035-1.392-1.21-2.468-3.038-2.454-1.927.007-2.94 1.196-2.981 2.426h1.23c.064-.71.732-1.336 1.744-1.336 1.027 0 1.744.64 1.744 1.568.007.95-.738 1.639-1.744 1.639h-.991V8.4ZM7.495 13V3.201H6.174v4.15H1.32V3.2H0V13h1.32V8.513h4.854V13z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH3.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH3;\n"
  },
  {
    "path": "src/icons/type-h4.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH4 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h4', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.007 3H15v10h-1.29v-2.051H8.854v-1.18C10.1 7.513 11.586 5.256 13.007 3m-2.82 6.777h3.524v-5.62h-.074a95 95 0 0 0-3.45 5.554zM7.495 13V3.201H6.174v4.15H1.32V3.2H0V13h1.32V8.513h4.854V13z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH4.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH4;\n"
  },
  {
    "path": "src/icons/type-h5.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH5 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h5', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 10.516h1.264c.193.976 1.112 1.364 2.01 1.364 1.005 0 2.067-.782 2.067-2.247 0-1.292-.983-2.082-2.089-2.082-1.012 0-1.658.596-1.924 1.077h-1.12L9.646 3h5.535v1.141h-4.415L10.5 7.28h.072c.201-.316.883-.84 1.967-.84 1.709 0 3.13 1.177 3.13 3.158 0 2.025-1.407 3.403-3.475 3.403-1.809 0-3.1-1.048-3.194-2.484ZM7.495 13V3.201H6.174v4.15H1.32V3.2H0V13h1.32V8.512h4.854V13z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH5.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH5;\n"
  },
  {
    "path": "src/icons/type-h6.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeH6 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-h6', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.596 5.178H14.3c-.106-.444-.62-1.072-1.706-1.072-1.332 0-2.325 1.269-2.325 3.947h.07c.268-.67 1.043-1.445 2.445-1.445 1.494 0 3.017 1.064 3.017 3.073C15.8 11.795 14.37 13 12.48 13c-1.036 0-2.093-.36-2.77-1.452C9.276 10.836 9 9.808 9 8.37 9 4.656 10.494 3 12.636 3c1.812 0 2.883 1.113 2.96 2.178m-5.151 4.566c0 1.367.944 2.15 2.043 2.15 1.128 0 2.037-.684 2.037-2.136 0-1.41-1-2.065-2.03-2.065-1.19 0-2.05.853-2.05 2.051M7.495 13V3.201H6.174v4.15H1.32V3.2H0V13h1.32V8.513h4.854V13z\" />\n      </svg>\n    );\n  },\n);\n\nTypeH6.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeH6;\n"
  },
  {
    "path": "src/icons/type-italic.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeItalic = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-italic', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.991 11.674 9.53 4.455c.123-.595.246-.71 1.347-.807l.11-.52H7.211l-.11.52c1.06.096 1.128.212 1.005.807L6.57 11.674c-.123.595-.246.71-1.346.806l-.11.52h3.774l.11-.52c-1.06-.095-1.129-.211-1.006-.806z\" />\n      </svg>\n    );\n  },\n);\n\nTypeItalic.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeItalic;\n"
  },
  {
    "path": "src/icons/type-strikethrough.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeStrikethrough = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-strikethrough', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.333 5.686c0 .31.083.581.27.814H5.166a2.8 2.8 0 0 1-.099-.76c0-1.627 1.436-2.768 3.48-2.768 1.969 0 3.39 1.175 3.445 2.85h-1.23c-.11-1.08-.964-1.743-2.25-1.743-1.23 0-2.18.602-2.18 1.607zm2.194 7.478c-2.153 0-3.589-1.107-3.705-2.81h1.23c.144 1.06 1.129 1.703 2.544 1.703 1.34 0 2.31-.705 2.31-1.675 0-.827-.547-1.374-1.914-1.675L8.046 8.5H1v-1h14v1h-3.504c.468.437.675.994.675 1.697 0 1.826-1.436 2.967-3.644 2.967\" />\n      </svg>\n    );\n  },\n);\n\nTypeStrikethrough.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeStrikethrough;\n"
  },
  {
    "path": "src/icons/type-underline.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst TypeUnderline = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type-underline', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M5.313 3.136h-1.23V9.54c0 2.105 1.47 3.623 3.917 3.623s3.917-1.518 3.917-3.623V3.136h-1.23v6.323c0 1.49-.978 2.57-2.687 2.57s-2.687-1.08-2.687-2.57zM12.5 15h-9v-1h9z\" />\n      </svg>\n    );\n  },\n);\n\nTypeUnderline.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default TypeUnderline;\n"
  },
  {
    "path": "src/icons/type.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Type = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-type', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m2.244 13.081.943-2.803H6.66l.944 2.803H8.86L5.54 3.75H4.322L1 13.081zm2.7-7.923L6.34 9.314H3.51l1.4-4.156zm9.146 7.027h.035v.896h1.128V8.125c0-1.51-1.114-2.345-2.646-2.345-1.736 0-2.59.916-2.666 2.174h1.108c.068-.718.595-1.19 1.517-1.19.971 0 1.518.52 1.518 1.464v.731H12.19c-1.647.007-2.522.8-2.522 2.058 0 1.319.957 2.18 2.345 2.18 1.06 0 1.716-.43 2.078-1.011zm-1.763.035c-.752 0-1.456-.397-1.456-1.244 0-.65.424-1.115 1.408-1.115h1.805v.834c0 .896-.752 1.525-1.757 1.525\" />\n      </svg>\n    );\n  },\n);\n\nType.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Type;\n"
  },
  {
    "path": "src/icons/typescript.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Typescript = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-typescript', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm-1.139 7.488q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518M7 7.596v1.113h1.3V14.5h1.221V8.709h1.289V7.596z\"\n        />\n      </svg>\n    );\n  },\n);\n\nTypescript.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Typescript;\n"
  },
  {
    "path": "src/icons/ubuntu.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Ubuntu = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ubuntu', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.273 9.53a2.273 2.273 0 1 0 0-4.546 2.273 2.273 0 0 0 0 4.547Zm9.467-4.984a2.273 2.273 0 1 0 0-4.546 2.273 2.273 0 0 0 0 4.546M7.4 13.108a5.54 5.54 0 0 1-3.775-2.88 3.27 3.27 0 0 1-1.944.24 7.4 7.4 0 0 0 5.328 4.465c.53.113 1.072.169 1.614.166a3.25 3.25 0 0 1-.666-1.9 6 6 0 0 1-.557-.091m3.828 2.285a2.273 2.273 0 1 0 0-4.546 2.273 2.273 0 0 0 0 4.546m3.163-3.108a7.44 7.44 0 0 0 .373-8.726 3.3 3.3 0 0 1-1.278 1.498 5.57 5.57 0 0 1-.183 5.535 3.26 3.26 0 0 1 1.088 1.693M2.098 3.998a3.3 3.3 0 0 1 1.897.486 5.54 5.54 0 0 1 4.464-2.388c.037-.67.277-1.313.69-1.843a7.47 7.47 0 0 0-7.051 3.745\" />\n      </svg>\n    );\n  },\n);\n\nUbuntu.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Ubuntu;\n"
  },
  {
    "path": "src/icons/ui-checks-grid.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UiChecksGrid = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ui-checks-grid', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 10h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1m9-9h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 9a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zm0-10a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM2 9a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2zm7 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2zM0 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.354.854a.5.5 0 1 0-.708-.708L3 3.793l-.646-.647a.5.5 0 1 0-.708.708l1 1a.5.5 0 0 0 .708 0z\" />\n      </svg>\n    );\n  },\n);\n\nUiChecksGrid.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UiChecksGrid;\n"
  },
  {
    "path": "src/icons/ui-checks.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UiChecks = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ui-checks', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zM2 1a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 8a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2zm.854-3.646a.5.5 0 0 1-.708 0l-1-1a.5.5 0 1 1 .708-.708l.646.647 1.646-1.647a.5.5 0 1 1 .708.708zm0 8a.5.5 0 0 1-.708 0l-1-1a.5.5 0 0 1 .708-.708l.646.647 1.646-1.647a.5.5 0 0 1 .708.708zM7 10.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0-5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 8a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nUiChecks.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UiChecks;\n"
  },
  {
    "path": "src/icons/ui-radios-grid.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UiRadiosGrid = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ui-radios-grid', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 15a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m9-9a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m0 9a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5M16 3.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-9 9a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m5.5 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m-9-11a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0 2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7\" />\n      </svg>\n    );\n  },\n);\n\nUiRadiosGrid.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UiRadiosGrid;\n"
  },
  {
    "path": "src/icons/ui-radios.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UiRadios = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-ui-radios', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zM0 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0m7-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0-5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 8a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5M3 1a3 3 0 1 0 0 6 3 3 0 0 0 0-6m0 4.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3\" />\n      </svg>\n    );\n  },\n);\n\nUiRadios.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UiRadios;\n"
  },
  {
    "path": "src/icons/umbrella-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UmbrellaFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-umbrella-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0a.5.5 0 0 1 .5.5v.514C12.625 1.238 16 4.22 16 8c0 0 0 .5-.5.5-.149 0-.352-.145-.352-.145l-.004-.004-.025-.023a3.5 3.5 0 0 0-.555-.394A3.17 3.17 0 0 0 13 7.5c-.638 0-1.178.213-1.564.434a3.5 3.5 0 0 0-.555.394l-.025.023-.003.003s-.204.146-.353.146-.352-.145-.352-.145l-.004-.004-.025-.023a3.5 3.5 0 0 0-.555-.394 3.3 3.3 0 0 0-1.064-.39V13.5H8h.5v.039l-.005.083a3 3 0 0 1-.298 1.102 2.26 2.26 0 0 1-.763.88C7.06 15.851 6.587 16 6 16s-1.061-.148-1.434-.396a2.26 2.26 0 0 1-.763-.88 3 3 0 0 1-.302-1.185v-.025l-.001-.009v-.003s0-.002.5-.002h-.5V13a.5.5 0 0 1 1 0v.506l.003.044a2 2 0 0 0 .195.726c.095.191.23.367.423.495.19.127.466.229.879.229s.689-.102.879-.229c.193-.128.328-.304.424-.495a2 2 0 0 0 .197-.77V7.544a3.3 3.3 0 0 0-1.064.39 3.5 3.5 0 0 0-.58.417l-.004.004S5.65 8.5 5.5 8.5s-.352-.145-.352-.145l-.004-.004a3.5 3.5 0 0 0-.58-.417A3.17 3.17 0 0 0 3 7.5c-.638 0-1.177.213-1.564.434a3.5 3.5 0 0 0-.58.417l-.004.004S.65 8.5.5 8.5C0 8.5 0 8 0 8c0-3.78 3.375-6.762 7.5-6.986V.5A.5.5 0 0 1 8 0\"\n        />\n      </svg>\n    );\n  },\n);\n\nUmbrellaFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UmbrellaFill;\n"
  },
  {
    "path": "src/icons/umbrella.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Umbrella = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-umbrella', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a.5.5 0 0 1 .5.5v.514C12.625 1.238 16 4.22 16 8c0 0 0 .5-.5.5-.149 0-.352-.145-.352-.145l-.004-.004-.025-.023a3.5 3.5 0 0 0-.555-.394A3.17 3.17 0 0 0 13 7.5c-.638 0-1.178.213-1.564.434a3.5 3.5 0 0 0-.555.394l-.025.023-.003.003s-.204.146-.353.146-.352-.145-.352-.145l-.004-.004-.025-.023a3.5 3.5 0 0 0-.555-.394 3.3 3.3 0 0 0-1.064-.39V13.5H8h.5v.039l-.005.083a3 3 0 0 1-.298 1.102 2.26 2.26 0 0 1-.763.88C7.06 15.851 6.587 16 6 16s-1.061-.148-1.434-.396a2.26 2.26 0 0 1-.763-.88 3 3 0 0 1-.302-1.185v-.025l-.001-.009v-.003s0-.002.5-.002h-.5V13a.5.5 0 0 1 1 0v.506l.003.044a2 2 0 0 0 .195.726c.095.191.23.367.423.495.19.127.466.229.879.229s.689-.102.879-.229c.193-.128.328-.304.424-.495a2 2 0 0 0 .197-.77V7.544a3.3 3.3 0 0 0-1.064.39 3.5 3.5 0 0 0-.58.417l-.004.004S5.65 8.5 5.5 8.5s-.352-.145-.352-.145l-.004-.004a3.5 3.5 0 0 0-.58-.417A3.17 3.17 0 0 0 3 7.5c-.638 0-1.177.213-1.564.434a3.5 3.5 0 0 0-.58.417l-.004.004S.65 8.5.5 8.5C0 8.5 0 8 0 8c0-3.78 3.375-6.762 7.5-6.986V.5A.5.5 0 0 1 8 0M6.577 2.123c-2.833.5-4.99 2.458-5.474 4.854A4.1 4.1 0 0 1 3 6.5c.806 0 1.48.25 1.962.511a9.7 9.7 0 0 1 .344-2.358c.242-.868.64-1.765 1.271-2.53m-.615 4.93A4.16 4.16 0 0 1 8 6.5a4.16 4.16 0 0 1 2.038.553 8.7 8.7 0 0 0-.307-2.13C9.434 3.858 8.898 2.83 8 2.117c-.898.712-1.434 1.74-1.731 2.804a8.7 8.7 0 0 0-.307 2.131zm3.46-4.93c.631.765 1.03 1.662 1.272 2.53.233.833.328 1.66.344 2.358A4.14 4.14 0 0 1 13 6.5c.77 0 1.42.23 1.897.477-.484-2.396-2.641-4.355-5.474-4.854z\" />\n      </svg>\n    );\n  },\n);\n\nUmbrella.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Umbrella;\n"
  },
  {
    "path": "src/icons/unindent.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Unindent = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unindent', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M13 8a.5.5 0 0 0-.5-.5H5.707l2.147-2.146a.5.5 0 1 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L5.707 8.5H12.5A.5.5 0 0 0 13 8\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3.5 4a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nUnindent.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Unindent;\n"
  },
  {
    "path": "src/icons/union.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Union = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-union', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2z\" />\n      </svg>\n    );\n  },\n);\n\nUnion.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Union;\n"
  },
  {
    "path": "src/icons/unity.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Unity = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unity', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15 11.2V3.733L8.61 0v2.867l2.503 1.466c.099.067.099.2 0 .234L8.148 6.3c-.099.067-.197.033-.263 0L4.92 4.567c-.099-.034-.099-.2 0-.234l2.504-1.466V0L1 3.733V11.2v-.033.033l2.438-1.433V6.833c0-.1.131-.166.197-.133L6.6 8.433c.099.067.132.134.132.234v3.466c0 .1-.132.167-.198.134L4.031 10.8l-2.438 1.433L7.983 16l6.391-3.733-2.438-1.434L9.434 12.3c-.099.067-.198 0-.198-.133V8.7c0-.1.066-.2.132-.233l2.965-1.734c.099-.066.197 0 .197.134V9.8z\" />\n      </svg>\n    );\n  },\n);\n\nUnity.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Unity;\n"
  },
  {
    "path": "src/icons/universal-access-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UniversalAccessCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-universal-access-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 4.143A1.071 1.071 0 1 0 8 2a1.071 1.071 0 0 0 0 2.143m-4.668 1.47 3.24.316v2.5l-.323 4.585A.383.383 0 0 0 7 13.14l.826-4.017c.045-.18.301-.18.346 0L9 13.139a.383.383 0 0 0 .752-.125L9.43 8.43v-2.5l3.239-.316a.38.38 0 0 0-.047-.756H3.379a.38.38 0 0 0-.047.756Z\" />\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8\" />\n      </svg>\n    );\n  },\n);\n\nUniversalAccessCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UniversalAccessCircle;\n"
  },
  {
    "path": "src/icons/universal-access.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UniversalAccess = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-universal-access', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.5 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M6 5.5l-4.535-.442A.531.531 0 0 1 1.531 4H14.47a.531.531 0 0 1 .066 1.058L10 5.5V9l.452 6.42a.535.535 0 0 1-1.053.174L8.243 9.97c-.064-.252-.422-.252-.486 0l-1.156 5.624a.535.535 0 0 1-1.053-.174L6 9z\" />\n      </svg>\n    );\n  },\n);\n\nUniversalAccess.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UniversalAccess;\n"
  },
  {
    "path": "src/icons/unlock-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UnlockFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unlock-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12 0a4 4 0 0 1 4 4v2.5h-1V4a3 3 0 1 0-6 0v2h.5A2.5 2.5 0 0 1 12 8.5v5A2.5 2.5 0 0 1 9.5 16h-7A2.5 2.5 0 0 1 0 13.5v-5A2.5 2.5 0 0 1 2.5 6H8V4a4 4 0 0 1 4-4\"\n        />\n      </svg>\n    );\n  },\n);\n\nUnlockFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UnlockFill;\n"
  },
  {
    "path": "src/icons/unlock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Unlock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unlock', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M12 0a4 4 0 0 1 4 4v2.5h-1V4a3 3 0 1 0-6 0v2h.5A2.5 2.5 0 0 1 12 8.5v5A2.5 2.5 0 0 1 9.5 16h-7A2.5 2.5 0 0 1 0 13.5v-5A2.5 2.5 0 0 1 2.5 6H8V4a4 4 0 0 1 4-4M2.5 7A1.5 1.5 0 0 0 1 8.5v5A1.5 1.5 0 0 0 2.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 9.5 7z\"\n        />\n      </svg>\n    );\n  },\n);\n\nUnlock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Unlock;\n"
  },
  {
    "path": "src/icons/unlock2-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Unlock2Fill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unlock2-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c1.07 0 2.041.42 2.759 1.104l.14.14.062.08a.5.5 0 0 1-.71.675l-.076-.066-.216-.205A3 3 0 0 0 5 4v2h6.5A2.5 2.5 0 0 1 14 8.5v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4\"\n        />\n      </svg>\n    );\n  },\n);\n\nUnlock2Fill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Unlock2Fill;\n"
  },
  {
    "path": "src/icons/unlock2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Unlock2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-unlock2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M8 0c1.07 0 2.041.42 2.759 1.104l.14.14.062.08a.5.5 0 0 1-.71.675l-.076-.066-.216-.205A3 3 0 0 0 5 4v2h6.5A2.5 2.5 0 0 1 14 8.5v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4M4.5 7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7z\"\n        />\n      </svg>\n    );\n  },\n);\n\nUnlock2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Unlock2;\n"
  },
  {
    "path": "src/icons/upc-scan.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UpcScan = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-upc-scan', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 1a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-1 0v-3A1.5 1.5 0 0 1 1.5 0h3a.5.5 0 0 1 0 1zM11 .5a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 1 16 1.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 1-.5-.5M.5 11a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 1 0 1h-3A1.5 1.5 0 0 1 0 14.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a1.5 1.5 0 0 1-1.5 1.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5M3 4.5a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nUpcScan.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UpcScan;\n"
  },
  {
    "path": "src/icons/upc.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Upc = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-upc', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 4.5a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0zm2 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0z\" />\n      </svg>\n    );\n  },\n);\n\nUpc.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Upc;\n"
  },
  {
    "path": "src/icons/upload.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Upload = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-upload', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5\" />\n        <path d=\"M7.646 1.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 2.707V11.5a.5.5 0 0 1-1 0V2.707L5.354 4.854a.5.5 0 1 1-.708-.708z\" />\n      </svg>\n    );\n  },\n);\n\nUpload.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Upload;\n"
  },
  {
    "path": "src/icons/usb-c-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbCFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-c-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 5a3 3 0 0 0 0 6h10a3 3 0 1 0 0-6zm.5 2.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1\" />\n      </svg>\n    );\n  },\n);\n\nUsbCFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbCFill;\n"
  },
  {
    "path": "src/icons/usb-c.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbC = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-c', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 7.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1z\" />\n        <path d=\"M0 8a3 3 0 0 1 3-3h10a3 3 0 1 1 0 6H3a3 3 0 0 1-3-3m3-2a2 2 0 1 0 0 4h10a2 2 0 1 0 0-4z\" />\n      </svg>\n    );\n  },\n);\n\nUsbC.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbC;\n"
  },
  {
    "path": "src/icons/usb-drive-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbDriveFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-drive-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4H6zM7 1v1h1V1zm2 0v1h1V1zM5.5 5a.5.5 0 0 0-.5.5V15a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V5.5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nUsbDriveFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbDriveFill;\n"
  },
  {
    "path": "src/icons/usb-drive.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbDrive = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-drive', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4H6zM7 1v1h1V1zm2 0v1h1V1zM6 5a1 1 0 0 0-1 1v8.5A1.5 1.5 0 0 0 6.5 16h4a1.5 1.5 0 0 0 1.5-1.5V6a1 1 0 0 0-1-1zm0 1h5v8.5a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nUsbDrive.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbDrive;\n"
  },
  {
    "path": "src/icons/usb-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.5 5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5zm1.75 1.5h11.5a.25.25 0 0 1 .25.25v1a.25.25 0 0 1-.25.25H2.25A.25.25 0 0 1 2 7.75v-1a.25.25 0 0 1 .25-.25\" />\n      </svg>\n    );\n  },\n);\n\nUsbFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbFill;\n"
  },
  {
    "path": "src/icons/usb-micro-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbMicroFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-micro-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.707 4A1 1 0 0 0 2 4.293L.293 6A1 1 0 0 0 0 6.707V11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V6.707A1 1 0 0 0 15.707 6L14 4.293A1 1 0 0 0 13.293 4zM4.5 7h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nUsbMicroFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbMicroFill;\n"
  },
  {
    "path": "src/icons/usb-micro.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbMicro = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-micro', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 7a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M2.707 4A1 1 0 0 0 2 4.293L.293 6A1 1 0 0 0 0 6.707V11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V6.707A1 1 0 0 0 15.707 6L14 4.293A1 1 0 0 0 13.293 4zm0 1h10.586L15 6.707V11H1V6.707z\" />\n      </svg>\n    );\n  },\n);\n\nUsbMicro.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbMicro;\n"
  },
  {
    "path": "src/icons/usb-mini-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbMiniFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-mini-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 3a1 1 0 0 0-1 1v1.293L.293 7A1 1 0 0 0 0 7.707V12a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7.707A1 1 0 0 0 15.707 7L14 5.293V4a1 1 0 0 0-1-1zm.5 5h9a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5\" />\n      </svg>\n    );\n  },\n);\n\nUsbMiniFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbMiniFill;\n"
  },
  {
    "path": "src/icons/usb-mini.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbMini = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-mini', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M3 3a1 1 0 0 0-1 1v1.293L.293 7A1 1 0 0 0 0 7.707V12a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7.707A1 1 0 0 0 15.707 7L14 5.293V4a1 1 0 0 0-1-1zm0 1h10v1.293a1 1 0 0 0 .293.707L15 7.707V12H1V7.707L2.707 6A1 1 0 0 0 3 5.293z\" />\n      </svg>\n    );\n  },\n);\n\nUsbMini.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbMini;\n"
  },
  {
    "path": "src/icons/usb-plug-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbPlugFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-plug-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4H6zM7 1v1h1V1zm2 0v1h1V1zM5.5 5a.5.5 0 0 0-.5.5v4.894a2 2 0 0 0 .336 1.11l.83 1.245c.544.816.834 1.774.834 2.754 0 .275.222.497.497.497h2.006a.497.497 0 0 0 .497-.497c0-.98.29-1.938.834-2.754l.83-1.245a2 2 0 0 0 .336-1.11V5.5a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nUsbPlugFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbPlugFill;\n"
  },
  {
    "path": "src/icons/usb-plug.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbPlug = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-plug', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4H6zM7 1v1h1V1zm2 0v1h1V1zM6 5a1 1 0 0 0-1 1v4.394c0 .494.146.976.42 1.387l1.038 1.558c.354.53.542 1.152.542 1.789 0 .481.39.872.872.872h1.256c.481 0 .872-.39.872-.872 0-.637.188-1.26.541-1.789l1.04-1.558A2.5 2.5 0 0 0 12 10.394V6a1 1 0 0 0-1-1zm0 1h5v4.394a1.5 1.5 0 0 1-.252.832L9.71 12.784A4.2 4.2 0 0 0 9.002 15H7.998a4.2 4.2 0 0 0-.707-2.216l-1.04-1.558A1.5 1.5 0 0 1 6 10.394z\" />\n      </svg>\n    );\n  },\n);\n\nUsbPlug.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbPlug;\n"
  },
  {
    "path": "src/icons/usb-symbol.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst UsbSymbol = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb-symbol', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m7.792.312-1.533 2.3A.25.25 0 0 0 6.467 3H7.5v7.319a2.5 2.5 0 0 0-.515-.298L5.909 9.56A1.5 1.5 0 0 1 5 8.18v-.266a1.5 1.5 0 1 0-1 0v.266a2.5 2.5 0 0 0 1.515 2.298l1.076.461a1.5 1.5 0 0 1 .888 1.129 2.001 2.001 0 1 0 1.021-.006v-.902a1.5 1.5 0 0 1 .756-1.303l1.484-.848A2.5 2.5 0 0 0 11.995 7h.755a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h.741a1.5 1.5 0 0 1-.747 1.142L8.76 8.99a3 3 0 0 0-.26.17V3h1.033a.25.25 0 0 0 .208-.389L8.208.312a.25.25 0 0 0-.416 0\" />\n      </svg>\n    );\n  },\n);\n\nUsbSymbol.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default UsbSymbol;\n"
  },
  {
    "path": "src/icons/usb.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Usb = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-usb', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.25 7a.25.25 0 0 0-.25.25v1c0 .138.112.25.25.25h11.5a.25.25 0 0 0 .25-.25v-1a.25.25 0 0 0-.25-.25z\" />\n        <path d=\"M0 5.5A.5.5 0 0 1 .5 5h15a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1-.5-.5zM1 10h14V6H1z\" />\n      </svg>\n    );\n  },\n);\n\nUsb.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Usb;\n"
  },
  {
    "path": "src/icons/valentine.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Valentine = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-valentine', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 5.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132M2.25 4a.25.25 0 0 0-.25.25v1.5a.25.25 0 0 0 .5 0V4.5h1.25a.25.25 0 0 0 0-.5zm10 0a.25.25 0 1 0 0 .5h1.25v1.25a.25.25 0 1 0 .5 0v-1.5a.25.25 0 0 0-.25-.25zM2.5 10.25a.25.25 0 1 0-.5 0v1.5c0 .138.112.25.25.25h1.5a.25.25 0 1 0 0-.5H2.5zm11.5 0a.25.25 0 1 0-.5 0v1.25h-1.25a.25.25 0 1 0 0 .5h1.5a.25.25 0 0 0 .25-.25z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 2.994v-.06a1 1 0 0 1 .859-.99l13-1.857a1 1 0 0 1 1.141.99V2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zM1 3v10h14V3z\"\n        />\n      </svg>\n    );\n  },\n);\n\nValentine.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Valentine;\n"
  },
  {
    "path": "src/icons/valentine2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Valentine2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-valentine2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6.493c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132M4.25 3a.25.25 0 0 0-.25.25v1.5a.25.25 0 0 0 .5 0V3.5h1.25a.25.25 0 0 0 0-.5zm6 0a.25.25 0 1 0 0 .5h1.25v1.25a.25.25 0 1 0 .5 0v-1.5a.25.25 0 0 0-.25-.25zM4.5 12.25a.25.25 0 1 0-.5 0v1.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 0-.5H4.5zm7.5 0a.25.25 0 1 0-.5 0v1.25h-1.25a.25.25 0 1 0 0 .5h1.5a.25.25 0 0 0 .25-.25z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2 1.994v-.042a1 1 0 0 1 .9-.995l9-.9A1 1 0 0 1 13 1a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zM3 2v13h10V2z\"\n        />\n      </svg>\n    );\n  },\n);\n\nValentine2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Valentine2;\n"
  },
  {
    "path": "src/icons/vector-pen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VectorPen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vector-pen', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M10.646.646a.5.5 0 0 1 .708 0l4 4a.5.5 0 0 1 0 .708l-1.902 1.902-.829 3.313a1.5 1.5 0 0 1-1.024 1.073L1.254 14.746 4.358 4.4A1.5 1.5 0 0 1 5.43 3.377l3.313-.828zm-1.8 2.908-3.173.793a.5.5 0 0 0-.358.342l-2.57 8.565 8.567-2.57a.5.5 0 0 0 .34-.357l.794-3.174-3.6-3.6z\"\n        />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M2.832 13.228 8 9a1 1 0 1 0-1-1l-4.228 5.168-.026.086z\"\n        />\n      </svg>\n    );\n  },\n);\n\nVectorPen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VectorPen;\n"
  },
  {
    "path": "src/icons/view-list.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ViewList = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-view-list', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 4.5h10a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2m0 1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zM1 2a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 2m0 12a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 14\" />\n      </svg>\n    );\n  },\n);\n\nViewList.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ViewList;\n"
  },
  {
    "path": "src/icons/view-stacked.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ViewStacked = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-view-stacked', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 0h10a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m0 1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm0 8h10a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2m0 1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nViewStacked.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ViewStacked;\n"
  },
  {
    "path": "src/icons/vignette.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Vignette = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vignette', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8\" />\n        <path d=\"M8.5 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 7a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1.683-6.281a.5.5 0 1 1-.866-.5.5.5 0 0 1 .866.5m-3.5 6.062a.5.5 0 1 1-.866-.5.5.5 0 0 1 .866.5m4.598-4.598a.5.5 0 1 1-.5-.866.5.5 0 0 1 .5.866m-6.062 3.5a.5.5 0 1 1-.5-.866.5.5 0 0 1 .5.866M11.5 8.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m-7 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m6.281 1.683a.5.5 0 1 1 .5-.866.5.5 0 0 1-.5.866m-6.062-3.5a.5.5 0 1 1 .5-.866.5.5 0 0 1-.5.866m4.598 4.598a.5.5 0 1 1 .866-.5.5.5 0 0 1-.866.5m-3.5-6.062a.5.5 0 1 1 .866-.5.5.5 0 0 1-.866.5\" />\n      </svg>\n    );\n  },\n);\n\nVignette.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Vignette;\n"
  },
  {
    "path": "src/icons/vimeo.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Vimeo = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vimeo', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.992 4.204q-.106 2.334-3.262 6.393-3.263 4.243-5.522 4.243-1.4 0-2.367-2.583L3.55 7.523Q2.83 4.939 2.007 4.94q-.178.001-1.254.754L0 4.724a210 210 0 0 0 2.334-2.081q1.581-1.364 2.373-1.437 1.865-.185 2.298 2.553.466 2.952.646 3.666.54 2.447 1.186 2.445.5 0 1.508-1.587 1.006-1.587 1.077-2.415.144-1.37-1.077-1.37a3 3 0 0 0-1.185.261q1.183-3.86 4.508-3.756 2.466.075 2.324 3.2z\" />\n      </svg>\n    );\n  },\n);\n\nVimeo.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Vimeo;\n"
  },
  {
    "path": "src/icons/vinyl-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VinylFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vinyl-fill', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4m0 3a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4 8a4 4 0 1 0 8 0 4 4 0 0 0-8 0\" />\n      </svg>\n    );\n  },\n);\n\nVinylFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VinylFill;\n"
  },
  {
    "path": "src/icons/vinyl.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Vinyl = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vinyl', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M8 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4M4 8a4 4 0 1 1 8 0 4 4 0 0 1-8 0\" />\n        <path d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nVinyl.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Vinyl;\n"
  },
  {
    "path": "src/icons/virus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Virus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-virus', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a1 1 0 0 1 1 1v1.402c0 .511.677.693.933.25l.7-1.214a1 1 0 0 1 1.733 1l-.701 1.214c-.256.443.24.939.683.683l1.214-.701a1 1 0 0 1 1 1.732l-1.214.701c-.443.256-.262.933.25.933H15a1 1 0 1 1 0 2h-1.402c-.512 0-.693.677-.25.933l1.214.701a1 1 0 1 1-1 1.732l-1.214-.7c-.443-.257-.939.24-.683.682l.701 1.214a1 1 0 1 1-1.732 1l-.701-1.214c-.256-.443-.933-.262-.933.25V15a1 1 0 1 1-2 0v-1.402c0-.512-.677-.693-.933-.25l-.701 1.214a1 1 0 0 1-1.732-1l.7-1.214c.257-.443-.24-.939-.682-.683l-1.214.701a1 1 0 1 1-1-1.732l1.214-.701c.443-.256.261-.933-.25-.933H1a1 1 0 1 1 0-2h1.402c.511 0 .693-.677.25-.933l-1.214-.701a1 1 0 1 1 1-1.732l1.214.701c.443.256.939-.24.683-.683l-.701-1.214a1 1 0 0 1 1.732-1l.701 1.214c.256.443.933.261.933-.25V1a1 1 0 0 1 1-1m2 5a1 1 0 1 0-2 0 1 1 0 0 0 2 0M6 7a1 1 0 1 0-2 0 1 1 0 0 0 2 0m1 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2m5-3a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" />\n      </svg>\n    );\n  },\n);\n\nVirus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Virus;\n"
  },
  {
    "path": "src/icons/virus2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Virus2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-virus2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 0a1 1 0 0 0-1 1v1.143c0 .557-.407 1.025-.921 1.24-.514.214-1.12.162-1.513-.231l-.809-.809a1 1 0 1 0-1.414 1.414l.809.809c.394.394.445.999.23 1.513C3.169 6.593 2.7 7 2.144 7H1a1 1 0 0 0 0 2h1.143c.557 0 1.025.407 1.24.921.214.514.163 1.12-.231 1.513l-.809.809a1 1 0 0 0 1.414 1.414l.809-.809c.394-.394.999-.445 1.513-.23.514.214.921.682.921 1.24V15a1 1 0 1 0 2 0v-1.143c0-.557.407-1.025.921-1.24.514-.214 1.12-.162 1.513.231l.809.809a1 1 0 0 0 1.414-1.414l-.809-.809c-.393-.394-.445-.999-.23-1.513.214-.514.682-.921 1.24-.921H15a1 1 0 1 0 0-2h-1.143c-.557 0-1.025-.407-1.24-.921-.214-.514-.162-1.12.231-1.513l.809-.809a1 1 0 0 0-1.414-1.414l-.809.809c-.394.393-.999.445-1.513.23-.514-.214-.92-.682-.92-1.24V1a1 1 0 0 0-1-1Zm2 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0m1 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2m4-4a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" />\n      </svg>\n    );\n  },\n);\n\nVirus2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Virus2;\n"
  },
  {
    "path": "src/icons/voicemail.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Voicemail = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-voicemail', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7 8.5A3.5 3.5 0 0 1 5.95 11h4.1a3.5 3.5 0 1 1 2.45 1h-9A3.5 3.5 0 1 1 7 8.5m-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0m14 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0\" />\n      </svg>\n    );\n  },\n);\n\nVoicemail.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Voicemail;\n"
  },
  {
    "path": "src/icons/volume-down-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeDownFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-down-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 4a.5.5 0 0 0-.812-.39L5.825 5.5H3.5A.5.5 0 0 0 3 6v4a.5.5 0 0 0 .5.5h2.325l2.363 1.89A.5.5 0 0 0 9 12zm3.025 4a4.5 4.5 0 0 1-1.318 3.182L10 10.475A3.5 3.5 0 0 0 11.025 8 3.5 3.5 0 0 0 10 5.525l.707-.707A4.5 4.5 0 0 1 12.025 8\" />\n      </svg>\n    );\n  },\n);\n\nVolumeDownFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeDownFill;\n"
  },
  {
    "path": "src/icons/volume-down.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeDown = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-down', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9 4a.5.5 0 0 0-.812-.39L5.825 5.5H3.5A.5.5 0 0 0 3 6v4a.5.5 0 0 0 .5.5h2.325l2.363 1.89A.5.5 0 0 0 9 12zM6.312 6.39 8 5.04v5.92L6.312 9.61A.5.5 0 0 0 6 9.5H4v-3h2a.5.5 0 0 0 .312-.11M12.025 8a4.5 4.5 0 0 1-1.318 3.182L10 10.475A3.5 3.5 0 0 0 11.025 8 3.5 3.5 0 0 0 10 5.525l.707-.707A4.5 4.5 0 0 1 12.025 8\" />\n      </svg>\n    );\n  },\n);\n\nVolumeDown.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeDown;\n"
  },
  {
    "path": "src/icons/volume-mute-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeMuteFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-mute-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06m7.137 2.096a.5.5 0 0 1 0 .708L12.207 8l1.647 1.646a.5.5 0 0 1-.708.708L11.5 8.707l-1.646 1.647a.5.5 0 0 1-.708-.708L10.793 8 9.146 6.354a.5.5 0 1 1 .708-.708L11.5 7.293l1.646-1.647a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nVolumeMuteFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeMuteFill;\n"
  },
  {
    "path": "src/icons/volume-mute.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeMute = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-mute', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06M6 5.04 4.312 6.39A.5.5 0 0 1 4 6.5H2v3h2a.5.5 0 0 1 .312.11L6 10.96zm7.854.606a.5.5 0 0 1 0 .708L12.207 8l1.647 1.646a.5.5 0 0 1-.708.708L11.5 8.707l-1.646 1.647a.5.5 0 0 1-.708-.708L10.793 8 9.146 6.354a.5.5 0 1 1 .708-.708L11.5 7.293l1.646-1.647a.5.5 0 0 1 .708 0\" />\n      </svg>\n    );\n  },\n);\n\nVolumeMute.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeMute;\n"
  },
  {
    "path": "src/icons/volume-off-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeOffFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-off-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.717 3.55A.5.5 0 0 1 11 4v8a.5.5 0 0 1-.812.39L7.825 10.5H5.5A.5.5 0 0 1 5 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06\" />\n      </svg>\n    );\n  },\n);\n\nVolumeOffFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeOffFill;\n"
  },
  {
    "path": "src/icons/volume-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeOff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-off', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.717 3.55A.5.5 0 0 1 11 4v8a.5.5 0 0 1-.812.39L7.825 10.5H5.5A.5.5 0 0 1 5 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06M10 5.04 8.312 6.39A.5.5 0 0 1 8 6.5H6v3h2a.5.5 0 0 1 .312.11L10 10.96z\" />\n      </svg>\n    );\n  },\n);\n\nVolumeOff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeOff;\n"
  },
  {
    "path": "src/icons/volume-up-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeUpFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-up-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.536 14.01A8.47 8.47 0 0 0 14.026 8a8.47 8.47 0 0 0-2.49-6.01l-.708.707A7.48 7.48 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303z\" />\n        <path d=\"M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.48 5.48 0 0 1 11.025 8a5.48 5.48 0 0 1-1.61 3.89z\" />\n        <path d=\"M8.707 11.182A4.5 4.5 0 0 0 10.025 8a4.5 4.5 0 0 0-1.318-3.182L8 5.525A3.5 3.5 0 0 1 9.025 8 3.5 3.5 0 0 1 8 10.475zM6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06\" />\n      </svg>\n    );\n  },\n);\n\nVolumeUpFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeUpFill;\n"
  },
  {
    "path": "src/icons/volume-up.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst VolumeUp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-volume-up', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.536 14.01A8.47 8.47 0 0 0 14.026 8a8.47 8.47 0 0 0-2.49-6.01l-.708.707A7.48 7.48 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303z\" />\n        <path d=\"M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.48 5.48 0 0 1 11.025 8a5.48 5.48 0 0 1-1.61 3.89z\" />\n        <path d=\"M10.025 8a4.5 4.5 0 0 1-1.318 3.182L8 10.475A3.5 3.5 0 0 0 9.025 8c0-.966-.392-1.841-1.025-2.475l.707-.707A4.5 4.5 0 0 1 10.025 8M7 4a.5.5 0 0 0-.812-.39L3.825 5.5H1.5A.5.5 0 0 0 1 6v4a.5.5 0 0 0 .5.5h2.325l2.363 1.89A.5.5 0 0 0 7 12zM4.312 6.39 6 5.04v5.92L4.312 9.61A.5.5 0 0 0 4 9.5H2v-3h2a.5.5 0 0 0 .312-.11\" />\n      </svg>\n    );\n  },\n);\n\nVolumeUp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default VolumeUp;\n"
  },
  {
    "path": "src/icons/vr.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Vr = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-vr', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 12V4a1 1 0 0 1 1-1h2.5V2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5v-1H4a1 1 0 0 1-1-1m6.5 1v1H12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9.5v1H12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1zM8 16a.5.5 0 0 1-.5-.5V.5a.5.5 0 0 1 1 0v15a.5.5 0 0 1-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nVr.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Vr;\n"
  },
  {
    "path": "src/icons/wallet-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WalletFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wallet-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M1.5 2A1.5 1.5 0 0 0 0 3.5v2h6a.5.5 0 0 1 .5.5c0 .253.08.644.306.958.207.288.557.542 1.194.542s.987-.254 1.194-.542C9.42 6.644 9.5 6.253 9.5 6a.5.5 0 0 1 .5-.5h6v-2A1.5 1.5 0 0 0 14.5 2z\" />\n        <path d=\"M16 6.5h-5.551a2.7 2.7 0 0 1-.443 1.042C9.613 8.088 8.963 8.5 8 8.5s-1.613-.412-2.006-.958A2.7 2.7 0 0 1 5.551 6.5H0v6A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5z\" />\n      </svg>\n    );\n  },\n);\n\nWalletFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WalletFill;\n"
  },
  {
    "path": "src/icons/wallet.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wallet = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wallet', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 3a2 2 0 0 1 2-2h13.5a.5.5 0 0 1 0 1H15v2a1 1 0 0 1 1 1v8.5a1.5 1.5 0 0 1-1.5 1.5h-12A2.5 2.5 0 0 1 0 12.5zm1 1.732V12.5A1.5 1.5 0 0 0 2.5 14h12a.5.5 0 0 0 .5-.5V5H2a2 2 0 0 1-1-.268M1 3a1 1 0 0 0 1 1h12V2H2a1 1 0 0 0-1 1\" />\n      </svg>\n    );\n  },\n);\n\nWallet.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wallet;\n"
  },
  {
    "path": "src/icons/wallet2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wallet2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wallet2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.136.326A1.5 1.5 0 0 1 14 1.78V3h.5A1.5 1.5 0 0 1 16 4.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 13.5v-9a1.5 1.5 0 0 1 1.432-1.499zM5.562 3H13V1.78a.5.5 0 0 0-.621-.484zM1.5 4a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5z\" />\n      </svg>\n    );\n  },\n);\n\nWallet2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wallet2;\n"
  },
  {
    "path": "src/icons/watch.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Watch = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-watch', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.5 5a.5.5 0 0 0-1 0v2.5H6a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .5-.5z\" />\n        <path d=\"M5.667 16C4.747 16 4 15.254 4 14.333v-1.86A6 6 0 0 1 2 8c0-1.777.772-3.374 2-4.472V1.667C4 .747 4.746 0 5.667 0h4.666C11.253 0 12 .746 12 1.667v1.86a6 6 0 0 1 1.918 3.48.502.502 0 0 1 .582.493v1a.5.5 0 0 1-.582.493A6 6 0 0 1 12 12.473v1.86c0 .92-.746 1.667-1.667 1.667zM13 8A5 5 0 1 0 3 8a5 5 0 0 0 10 0\" />\n      </svg>\n    );\n  },\n);\n\nWatch.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Watch;\n"
  },
  {
    "path": "src/icons/water.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Water = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-water', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.036 3.314a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 3.964a.5.5 0 0 1-.278-.65m0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 6.964a.5.5 0 0 1-.278-.65m0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 9.964a.5.5 0 0 1-.278-.65m0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.757-.703a.5.5 0 0 1-.278-.65\" />\n      </svg>\n    );\n  },\n);\n\nWater.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Water;\n"
  },
  {
    "path": "src/icons/webcam-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WebcamFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-webcam-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.644 11.094a.5.5 0 0 1 .356-.15h2a.5.5 0 0 1 .356.15c.175.177.39.347.603.496a7 7 0 0 0 .752.456l.01.006h.003A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.224-.947l.002-.001.01-.006a4 4 0 0 0 .214-.116 8 8 0 0 0 .539-.34c.214-.15.428-.319.603-.496M7 6.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0\" />\n        <path d=\"M2 3a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm6 1.5a2 2 0 1 1 0 4 2 2 0 0 1 0-4M12.5 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1\" />\n      </svg>\n    );\n  },\n);\n\nWebcamFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WebcamFill;\n"
  },
  {
    "path": "src/icons/webcam.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Webcam = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-webcam', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H9.269c.144.162.33.324.531.475a7 7 0 0 0 .907.57l.014.006.003.002A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.224-.947l.003-.002.014-.007a5 5 0 0 0 .268-.148 7 7 0 0 0 .639-.421c.2-.15.387-.313.531-.475H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1z\" />\n        <path d=\"M8 6.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0m7 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n      </svg>\n    );\n  },\n);\n\nWebcam.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Webcam;\n"
  },
  {
    "path": "src/icons/wechat.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wechat = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wechat', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.176 14.429c-2.665 0-4.826-1.8-4.826-4.018 0-2.22 2.159-4.02 4.824-4.02S16 8.191 16 10.411c0 1.21-.65 2.301-1.666 3.036a.32.32 0 0 0-.12.366l.218.81a.6.6 0 0 1 .029.117.166.166 0 0 1-.162.162.2.2 0 0 1-.092-.03l-1.057-.61a.5.5 0 0 0-.256-.074.5.5 0 0 0-.142.021 5.7 5.7 0 0 1-1.576.22M9.064 9.542a.647.647 0 1 0 .557-1 .645.645 0 0 0-.646.647.6.6 0 0 0 .09.353Zm3.232.001a.646.646 0 1 0 .546-1 .645.645 0 0 0-.644.644.63.63 0 0 0 .098.356\" />\n        <path d=\"M0 6.826c0 1.455.781 2.765 2.001 3.656a.385.385 0 0 1 .143.439l-.161.6-.1.373a.5.5 0 0 0-.032.14.19.19 0 0 0 .193.193q.06 0 .111-.029l1.268-.733a.6.6 0 0 1 .308-.088q.088 0 .171.025a6.8 6.8 0 0 0 1.625.26 4.5 4.5 0 0 1-.177-1.251c0-2.936 2.785-5.02 5.824-5.02l.15.002C10.587 3.429 8.392 2 5.796 2 2.596 2 0 4.16 0 6.826m4.632-1.555a.77.77 0 1 1-1.54 0 .77.77 0 0 1 1.54 0m3.875 0a.77.77 0 1 1-1.54 0 .77.77 0 0 1 1.54 0\" />\n      </svg>\n    );\n  },\n);\n\nWechat.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wechat;\n"
  },
  {
    "path": "src/icons/whatsapp.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Whatsapp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-whatsapp', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232\" />\n      </svg>\n    );\n  },\n);\n\nWhatsapp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Whatsapp;\n"
  },
  {
    "path": "src/icons/wifi-1.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wifi1 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wifi-1', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.046 10.454c.226-.226.185-.605-.1-.75A6.5 6.5 0 0 0 8 9c-1.06 0-2.062.254-2.946.704-.285.145-.326.524-.1.75l.015.015c.16.16.407.19.611.09A5.5 5.5 0 0 1 8 10c.868 0 1.69.201 2.42.56.203.1.45.07.611-.091zM9.06 12.44c.196-.196.198-.52-.04-.66A2 2 0 0 0 8 11.5a2 2 0 0 0-1.02.28c-.238.14-.236.464-.04.66l.706.706a.5.5 0 0 0 .707 0l.708-.707z\" />\n      </svg>\n    );\n  },\n);\n\nWifi1.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wifi1;\n"
  },
  {
    "path": "src/icons/wifi-2.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wifi2 = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wifi-2', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M13.229 8.271c.216-.216.194-.578-.063-.745A9.46 9.46 0 0 0 8 6c-1.905 0-3.68.56-5.166 1.526a.48.48 0 0 0-.063.745.525.525 0 0 0 .652.065A8.46 8.46 0 0 1 8 7a8.46 8.46 0 0 1 4.577 1.336c.205.132.48.108.652-.065m-2.183 2.183c.226-.226.185-.605-.1-.75A6.5 6.5 0 0 0 8 9c-1.06 0-2.062.254-2.946.704-.285.145-.326.524-.1.75l.015.015c.16.16.408.19.611.09A5.5 5.5 0 0 1 8 10c.868 0 1.69.201 2.42.56.203.1.45.07.611-.091zM9.06 12.44c.196-.196.198-.52-.04-.66A2 2 0 0 0 8 11.5a2 2 0 0 0-1.02.28c-.238.14-.236.464-.04.66l.706.706a.5.5 0 0 0 .708 0l.707-.707z\" />\n      </svg>\n    );\n  },\n);\n\nWifi2.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wifi2;\n"
  },
  {
    "path": "src/icons/wifi-off.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WifiOff = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wifi-off', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M10.706 3.294A12.6 12.6 0 0 0 8 3C5.259 3 2.723 3.882.663 5.379a.485.485 0 0 0-.048.736.52.52 0 0 0 .668.05A11.45 11.45 0 0 1 8 4q.946 0 1.852.148zM8 6c-1.905 0-3.68.56-5.166 1.526a.48.48 0 0 0-.063.745.525.525 0 0 0 .652.065 8.45 8.45 0 0 1 3.51-1.27zm2.596 1.404.785-.785q.947.362 1.785.907a.482.482 0 0 1 .063.745.525.525 0 0 1-.652.065 8.5 8.5 0 0 0-1.98-.932zM8 10l.933-.933a6.5 6.5 0 0 1 2.013.637c.285.145.326.524.1.75l-.015.015a.53.53 0 0 1-.611.09A5.5 5.5 0 0 0 8 10m4.905-4.905.747-.747q.886.451 1.685 1.03a.485.485 0 0 1 .047.737.52.52 0 0 1-.668.05 11.5 11.5 0 0 0-1.811-1.07M9.02 11.78c.238.14.236.464.04.66l-.707.706a.5.5 0 0 1-.707 0l-.707-.707c-.195-.195-.197-.518.04-.66A2 2 0 0 1 8 11.5c.374 0 .723.102 1.021.28zm4.355-9.905a.53.53 0 0 1 .75.75l-10.75 10.75a.53.53 0 0 1-.75-.75z\" />\n      </svg>\n    );\n  },\n);\n\nWifiOff.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WifiOff;\n"
  },
  {
    "path": "src/icons/wifi.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wifi = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wifi', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M15.384 6.115a.485.485 0 0 0-.047-.736A12.44 12.44 0 0 0 8 3C5.259 3 2.723 3.882.663 5.379a.485.485 0 0 0-.048.736.52.52 0 0 0 .668.05A11.45 11.45 0 0 1 8 4c2.507 0 4.827.802 6.716 2.164.205.148.49.13.668-.049\" />\n        <path d=\"M13.229 8.271a.482.482 0 0 0-.063-.745A9.46 9.46 0 0 0 8 6c-1.905 0-3.68.56-5.166 1.526a.48.48 0 0 0-.063.745.525.525 0 0 0 .652.065A8.46 8.46 0 0 1 8 7a8.46 8.46 0 0 1 4.576 1.336c.206.132.48.108.653-.065m-2.183 2.183c.226-.226.185-.605-.1-.75A6.5 6.5 0 0 0 8 9c-1.06 0-2.062.254-2.946.704-.285.145-.326.524-.1.75l.015.015c.16.16.407.19.611.09A5.5 5.5 0 0 1 8 10c.868 0 1.69.201 2.42.56.203.1.45.07.61-.091zM9.06 12.44c.196-.196.198-.52-.04-.66A2 2 0 0 0 8 11.5a2 2 0 0 0-1.02.28c-.238.14-.236.464-.04.66l.706.706a.5.5 0 0 0 .707 0l.707-.707z\" />\n      </svg>\n    );\n  },\n);\n\nWifi.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wifi;\n"
  },
  {
    "path": "src/icons/wikipedia.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wikipedia = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wikipedia', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.835 3.003c.828-.006 2.688 0 2.688 0l.033.03v.288q0 .12-.133.12c-.433.02-.522.063-.68.29-.087.126-.258.393-.435.694l-1.52 2.843-.043.089 1.858 3.801.113.031 2.926-6.946q.152-.42-.044-.595c-.132-.114-.224-.18-.563-.195l-.275-.014a.16.16 0 0 1-.096-.035.1.1 0 0 1-.046-.084v-.289l.042-.03h3.306l.034.03v.29q0 .117-.133.117-.65.03-.962.281a1.64 1.64 0 0 0-.488.704s-2.691 6.16-3.612 8.208c-.353.672-.7.61-1.004-.019A224 224 0 0 1 8.044 8.81c-.623 1.285-1.475 3.026-1.898 3.81-.411.715-.75.622-1.02.019-.45-1.065-1.131-2.519-1.817-3.982-.735-1.569-1.475-3.149-1.943-4.272-.167-.4-.293-.657-.412-.759q-.18-.15-.746-.18Q0 3.421 0 3.341v-.303l.034-.03c.615-.003 3.594 0 3.594 0l.034.03v.288q0 .119-.15.118l-.375.016q-.483.02-.483.288-.002.125.109.4c.72 1.753 3.207 6.998 3.207 6.998l.091.023 1.603-3.197-.32-.71L6.24 5.095s-.213-.433-.286-.577l-.098-.196c-.387-.77-.411-.82-.865-.88-.137-.017-.208-.035-.208-.102v-.304l.041-.03h2.853l.075.024v.303q0 .104-.15.104l-.206.03c-.523.04-.438.254-.09.946l1.057 2.163 1.17-2.332c.195-.427.155-.534.074-.633-.046-.055-.202-.144-.54-.158l-.133-.015a.16.16 0 0 1-.096-.034.1.1 0 0 1-.045-.085v-.288l.041-.03Z\" />\n      </svg>\n    );\n  },\n);\n\nWikipedia.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wikipedia;\n"
  },
  {
    "path": "src/icons/wind.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wind = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wind', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.5 2A2.5 2.5 0 0 0 10 4.5a.5.5 0 0 1-1 0A3.5 3.5 0 1 1 12.5 8H.5a.5.5 0 0 1 0-1h12a2.5 2.5 0 0 0 0-5m-7 1a1 1 0 0 0-1 1 .5.5 0 0 1-1 0 2 2 0 1 1 2 2h-5a.5.5 0 0 1 0-1h5a1 1 0 0 0 0-2M0 9.5A.5.5 0 0 1 .5 9h10.042a3 3 0 1 1-3 3 .5.5 0 0 1 1 0 2 2 0 1 0 2-2H.5a.5.5 0 0 1-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nWind.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wind;\n"
  },
  {
    "path": "src/icons/window-dash.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowDash = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-dash', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M4 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V7H1v5a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2zm1 2h13V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-5.5 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5\" />\n      </svg>\n    );\n  },\n);\n\nWindowDash.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowDash;\n"
  },
  {
    "path": "src/icons/window-desktop.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowDesktop = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-desktop', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M2.375 1A2.366 2.366 0 0 0 0 3.357v9.286A2.366 2.366 0 0 0 2.375 15h11.25A2.366 2.366 0 0 0 16 12.643V3.357A2.366 2.366 0 0 0 13.625 1zM1 3.357C1 2.612 1.611 2 2.375 2h11.25C14.389 2 15 2.612 15 3.357V4H1zM1 5h14v7.643c0 .745-.611 1.357-1.375 1.357H2.375A1.366 1.366 0 0 1 1 12.643z\" />\n      </svg>\n    );\n  },\n);\n\nWindowDesktop.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowDesktop;\n"
  },
  {
    "path": "src/icons/window-dock.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowDock = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-dock', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3.5 11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm4.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\" />\n        <path d=\"M14 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM2 14h12a1 1 0 0 0 1-1V5H1v8a1 1 0 0 0 1 1M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1z\" />\n      </svg>\n    );\n  },\n);\n\nWindowDock.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowDock;\n"
  },
  {
    "path": "src/icons/window-fullscreen.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowFullscreen = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-fullscreen', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M3 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1.5 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5zM1 5V2h14v3zm0 1h14v8H1z\" />\n      </svg>\n    );\n  },\n);\n\nWindowFullscreen.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowFullscreen;\n"
  },
  {
    "path": "src/icons/window-plus.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowPlus = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-plus', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M4 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V7H1v5a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2zm1 2h13V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5\" />\n      </svg>\n    );\n  },\n);\n\nWindowPlus.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowPlus;\n"
  },
  {
    "path": "src/icons/window-sidebar.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowSidebar = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-sidebar', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v2H1V3a1 1 0 0 1 1-1zM1 13V6h4v8H2a1 1 0 0 1-1-1m5 1V6h9v7a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nWindowSidebar.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowSidebar;\n"
  },
  {
    "path": "src/icons/window-split.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowSplit = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-split', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm12 1a1 1 0 0 1 1 1v2H1V3a1 1 0 0 1 1-1zM1 13V6h6.5v8H2a1 1 0 0 1-1-1m7.5 1V6H15v7a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nWindowSplit.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowSplit;\n"
  },
  {
    "path": "src/icons/window-stack.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowStack = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-stack', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.5 6a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M6 6a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M12 1a2 2 0 0 1 2 2 2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2 2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM2 12V5a2 2 0 0 1 2-2h9a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1m1-4v5a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V8zm12-1V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v2z\" />\n      </svg>\n    );\n  },\n);\n\nWindowStack.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowStack;\n"
  },
  {
    "path": "src/icons/window-x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WindowX = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M4 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" />\n        <path d=\"M0 4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v4a.5.5 0 0 1-1 0V7H1v5a1 1 0 0 0 1 1h5.5a.5.5 0 0 1 0 1H2a2 2 0 0 1-2-2zm1 2h13V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z\" />\n        <path d=\"M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-4.854-1.354a.5.5 0 0 0 0 .708l.647.646-.647.646a.5.5 0 0 0 .708.708l.646-.647.646.647a.5.5 0 0 0 .708-.708l-.647-.646.647-.646a.5.5 0 0 0-.708-.708l-.646.647-.646-.647a.5.5 0 0 0-.708 0\" />\n      </svg>\n    );\n  },\n);\n\nWindowX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WindowX;\n"
  },
  {
    "path": "src/icons/window.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Window = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-window', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n        <path d=\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm13 2v2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M2 14a1 1 0 0 1-1-1V6h14v7a1 1 0 0 1-1 1z\" />\n      </svg>\n    );\n  },\n);\n\nWindow.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Window;\n"
  },
  {
    "path": "src/icons/windows.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Windows = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-windows', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.555 1.375 0 2.237v5.45h6.555zM0 13.795l6.555.933V8.313H0zm7.278-5.4.026 6.378L16 16V8.395zM16 0 7.33 1.244v6.414H16z\" />\n      </svg>\n    );\n  },\n);\n\nWindows.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Windows;\n"
  },
  {
    "path": "src/icons/wordpress.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wordpress = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wordpress', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.633 7.653c0-.848-.305-1.435-.566-1.892l-.08-.13c-.317-.51-.594-.958-.594-1.48 0-.63.478-1.218 1.152-1.218q.03 0 .058.003l.031.003A6.84 6.84 0 0 0 8 1.137 6.86 6.86 0 0 0 2.266 4.23c.16.005.313.009.442.009.717 0 1.828-.087 1.828-.087.37-.022.414.521.044.565 0 0-.371.044-.785.065l2.5 7.434 1.5-4.506-1.07-2.929c-.369-.022-.719-.065-.719-.065-.37-.022-.326-.588.043-.566 0 0 1.134.087 1.808.087.718 0 1.83-.087 1.83-.087.37-.022.413.522.043.566 0 0-.372.043-.785.065l2.48 7.377.684-2.287.054-.173c.27-.86.469-1.495.469-2.046zM1.137 8a6.86 6.86 0 0 0 3.868 6.176L1.73 5.206A6.8 6.8 0 0 0 1.137 8\" />\n        <path d=\"M6.061 14.583 8.121 8.6l2.109 5.78q.02.05.049.094a6.85 6.85 0 0 1-4.218.109m7.96-9.876q.046.328.047.706c0 .696-.13 1.479-.522 2.458l-2.096 6.06a6.86 6.86 0 0 0 2.572-9.224z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M0 8c0-4.411 3.589-8 8-8s8 3.589 8 8-3.59 8-8 8-8-3.589-8-8m.367 0c0 4.209 3.424 7.633 7.633 7.633S15.632 12.209 15.632 8C15.632 3.79 12.208.367 8 .367 3.79.367.367 3.79.367 8\"\n        />\n      </svg>\n    );\n  },\n);\n\nWordpress.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wordpress;\n"
  },
  {
    "path": "src/icons/wrench-adjustable-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WrenchAdjustableCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wrench-adjustable-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M6.705 8.139a.25.25 0 0 0-.288-.376l-1.5.5.159.474.808-.27-.595.894a.25.25 0 0 0 .287.376l.808-.27-.595.894a.25.25 0 0 0 .287.376l1.5-.5-.159-.474-.808.27.596-.894a.25.25 0 0 0-.288-.376l-.808.27z\" />\n        <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m-6.202-4.751 1.988-1.657a4.5 4.5 0 0 1 7.537-4.623L7.497 6.5l1 2.5 1.333 3.11c-.56.251-1.18.39-1.833.39a4.5 4.5 0 0 1-1.592-.29L4.747 14.2a7.03 7.03 0 0 1-2.949-2.951M12.496 8a4.5 4.5 0 0 1-1.703 3.526L9.497 8.5l2.959-1.11q.04.3.04.61\" />\n      </svg>\n    );\n  },\n);\n\nWrenchAdjustableCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WrenchAdjustableCircleFill;\n"
  },
  {
    "path": "src/icons/wrench-adjustable-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WrenchAdjustableCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wrench-adjustable-circle', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M12.496 8a4.5 4.5 0 0 1-1.703 3.526L9.497 8.5l2.959-1.11q.04.3.04.61\" />\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-1 0a7 7 0 1 0-13.202 3.249l1.988-1.657a4.5 4.5 0 0 1 7.537-4.623L7.497 6.5l1 2.5 1.333 3.11c-.56.251-1.18.39-1.833.39a4.5 4.5 0 0 1-1.592-.29L4.747 14.2A7 7 0 0 0 15 8m-8.295.139a.25.25 0 0 0-.288-.376l-1.5.5.159.474.808-.27-.595.894a.25.25 0 0 0 .287.376l.808-.27-.595.894a.25.25 0 0 0 .287.376l1.5-.5-.159-.474-.808.27.596-.894a.25.25 0 0 0-.288-.376l-.808.27z\" />\n      </svg>\n    );\n  },\n);\n\nWrenchAdjustableCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WrenchAdjustableCircle;\n"
  },
  {
    "path": "src/icons/wrench-adjustable.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst WrenchAdjustable = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wrench-adjustable', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 4.5a4.5 4.5 0 0 1-1.703 3.526L13 5l2.959-1.11q.04.3.041.61\" />\n        <path d=\"M11.5 9c.653 0 1.273-.139 1.833-.39L12 5.5 11 3l3.826-1.53A4.5 4.5 0 0 0 7.29 6.092l-6.116 5.096a2.583 2.583 0 1 0 3.638 3.638L9.908 8.71A4.5 4.5 0 0 0 11.5 9m-1.292-4.361-.596.893.809-.27a.25.25 0 0 1 .287.377l-.596.893.809-.27.158.475-1.5.5a.25.25 0 0 1-.287-.376l.596-.893-.809.27a.25.25 0 0 1-.287-.377l.596-.893-.809.27-.158-.475 1.5-.5a.25.25 0 0 1 .287.376M3 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" />\n      </svg>\n    );\n  },\n);\n\nWrenchAdjustable.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default WrenchAdjustable;\n"
  },
  {
    "path": "src/icons/wrench.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Wrench = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-wrench', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M.102 2.223A3.004 3.004 0 0 0 3.78 5.897l6.341 6.252A3.003 3.003 0 0 0 13 16a3 3 0 1 0-.851-5.878L5.897 3.781A3.004 3.004 0 0 0 2.223.1l2.141 2.142L4 4l-1.757.364zm13.37 9.019.528.026.287.445.445.287.026.529L15 13l-.242.471-.026.529-.445.287-.287.445-.529.026L13 15l-.471-.242-.529-.026-.287-.445-.445-.287-.026-.529L11 13l.242-.471.026-.529.445-.287.287-.445.529-.026L13 11z\" />\n      </svg>\n    );\n  },\n);\n\nWrench.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Wrench;\n"
  },
  {
    "path": "src/icons/x-circle-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XCircleFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-circle-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293z\" />\n      </svg>\n    );\n  },\n);\n\nXCircleFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XCircleFill;\n"
  },
  {
    "path": "src/icons/x-circle.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XCircle = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-circle', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\" />\n        <path d=\"M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nXCircle.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XCircle;\n"
  },
  {
    "path": "src/icons/x-diamond-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XDiamondFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-diamond-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.05.435c-.58-.58-1.52-.58-2.1 0L4.047 3.339 8 7.293l3.954-3.954L9.049.435zm3.61 3.611L8.708 8l3.954 3.954 2.904-2.905c.58-.58.58-1.519 0-2.098l-2.904-2.905zm-.706 8.614L8 8.708l-3.954 3.954 2.905 2.904c.58.58 1.519.58 2.098 0l2.905-2.904zm-8.614-.706L7.292 8 3.339 4.046.435 6.951c-.58.58-.58 1.519 0 2.098z\" />\n      </svg>\n    );\n  },\n);\n\nXDiamondFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XDiamondFill;\n"
  },
  {
    "path": "src/icons/x-diamond.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XDiamond = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-diamond', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.987 16a1.53 1.53 0 0 1-1.07-.448L.45 9.082a1.53 1.53 0 0 1 0-2.165L6.917.45a1.53 1.53 0 0 1 2.166 0l6.469 6.468A1.53 1.53 0 0 1 16 8.013a1.53 1.53 0 0 1-.448 1.07l-6.47 6.469A1.53 1.53 0 0 1 7.988 16zM7.639 1.17 4.766 4.044 8 7.278l3.234-3.234L8.361 1.17a.51.51 0 0 0-.722 0M8.722 8l3.234 3.234 2.873-2.873c.2-.2.2-.523 0-.722l-2.873-2.873zM8 8.722l-3.234 3.234 2.873 2.873c.2.2.523.2.722 0l2.873-2.873zM7.278 8 4.044 4.766 1.17 7.639a.51.51 0 0 0 0 .722l2.874 2.873z\" />\n      </svg>\n    );\n  },\n);\n\nXDiamond.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XDiamond;\n"
  },
  {
    "path": "src/icons/x-lg.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XLg = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-lg', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\" />\n      </svg>\n    );\n  },\n);\n\nXLg.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XLg;\n"
  },
  {
    "path": "src/icons/x-octagon-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XOctagonFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-octagon-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M11.46.146A.5.5 0 0 0 11.107 0H4.893a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353zm-6.106 4.5L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nXOctagonFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XOctagonFill;\n"
  },
  {
    "path": "src/icons/x-octagon.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XOctagon = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-octagon', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM5.1 1 1 5.1v5.8L5.1 15h5.8l4.1-4.1V5.1L10.9 1z\" />\n        <path d=\"M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nXOctagon.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XOctagon;\n"
  },
  {
    "path": "src/icons/x-square-fill.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XSquareFill = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-square-fill', className]\n          .filter(Boolean)\n          .join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm3.354 4.646L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 1 1 .708-.708\" />\n      </svg>\n    );\n  },\n);\n\nXSquareFill.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XSquareFill;\n"
  },
  {
    "path": "src/icons/x-square.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst XSquare = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x-square', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z\" />\n        <path d=\"M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nXSquare.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default XSquare;\n"
  },
  {
    "path": "src/icons/x.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst X = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-x', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708\" />\n      </svg>\n    );\n  },\n);\n\nX.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default X;\n"
  },
  {
    "path": "src/icons/xbox.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Xbox = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-xbox', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M7.202 15.967a8 8 0 0 1-3.552-1.26c-.898-.585-1.101-.826-1.101-1.306 0-.965 1.062-2.656 2.879-4.583C6.459 7.723 7.897 6.44 8.052 6.475c.302.068 2.718 2.423 3.622 3.531 1.43 1.753 2.088 3.189 1.754 3.829-.254.486-1.83 1.437-2.987 1.802-.954.301-2.207.429-3.239.33m-5.866-3.57C.589 11.253.212 10.127.03 8.497c-.06-.539-.038-.846.137-1.95.218-1.377 1.002-2.97 1.945-3.95.401-.417.437-.427.926-.263.595.2 1.23.638 2.213 1.528l.574.519-.313.385C4.056 6.553 2.52 9.086 1.94 10.653c-.315.852-.442 1.707-.306 2.063.091.24.007.15-.3-.319Zm13.101.195c.074-.36-.019-1.02-.238-1.687-.473-1.443-2.055-4.128-3.508-5.953l-.457-.575.494-.454c.646-.593 1.095-.948 1.58-1.25.381-.237.927-.448 1.161-.448.145 0 .654.528 1.065 1.104a8.4 8.4 0 0 1 1.343 3.102c.153.728.166 2.286.024 3.012a9.5 9.5 0 0 1-.6 1.893c-.179.393-.624 1.156-.82 1.404-.1.128-.1.127-.043-.148ZM7.335 1.952c-.67-.34-1.704-.705-2.276-.803a4 4 0 0 0-.759-.043c-.471.024-.45 0 .306-.358A7.8 7.8 0 0 1 6.47.128c.8-.169 2.306-.17 3.094-.005.85.18 1.853.552 2.418.9l.168.103-.385-.02c-.766-.038-1.88.27-3.078.853-.361.176-.676.316-.699.312a12 12 0 0 1-.654-.319Z\" />\n      </svg>\n    );\n  },\n);\n\nXbox.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Xbox;\n"
  },
  {
    "path": "src/icons/yelp.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Yelp = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-yelp', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"m4.188 10.095.736-.17.073-.02A.813.813 0 0 0 5.45 8.65a1 1 0 0 0-.3-.258 3 3 0 0 0-.428-.198l-.808-.295a76 76 0 0 0-1.364-.493C2.253 7.3 2 7.208 1.783 7.14c-.041-.013-.087-.025-.124-.038a2.1 2.1 0 0 0-.606-.116.72.72 0 0 0-.572.245 2 2 0 0 0-.105.132 1.6 1.6 0 0 0-.155.309c-.15.443-.225.908-.22 1.376.002.423.013.966.246 1.334a.8.8 0 0 0 .22.24c.166.114.333.129.507.141.26.019.513-.045.764-.103l2.447-.566zm8.219-3.911a4.2 4.2 0 0 0-.8-1.14 1.6 1.6 0 0 0-.275-.21 2 2 0 0 0-.15-.073.72.72 0 0 0-.621.031c-.142.07-.294.182-.496.37-.028.028-.063.06-.094.089-.167.156-.353.35-.574.575q-.51.516-1.01 1.042l-.598.62a3 3 0 0 0-.298.365 1 1 0 0 0-.157.364.8.8 0 0 0 .007.301q0 .007.003.013a.81.81 0 0 0 .945.616l.074-.014 3.185-.736c.251-.058.506-.112.732-.242.151-.088.295-.175.394-.35a.8.8 0 0 0 .093-.313c.05-.434-.178-.927-.36-1.308M6.706 7.523c.23-.29.23-.722.25-1.075.07-1.181.143-2.362.201-3.543.022-.448.07-.89.044-1.34-.022-.372-.025-.799-.26-1.104C6.528-.077 5.644-.033 5.04.05q-.278.038-.553.104a8 8 0 0 0-.543.149c-.58.19-1.393.537-1.53 1.204-.078.377.106.763.249 1.107.173.417.41.792.625 1.185.57 1.036 1.15 2.066 1.728 3.097.172.308.36.697.695.857q.033.015.068.025c.15.057.313.068.469.032l.028-.007a.8.8 0 0 0 .377-.226zm-.276 3.161a.74.74 0 0 0-.923-.234 1 1 0 0 0-.145.09 2 2 0 0 0-.346.354c-.026.033-.05.077-.08.104l-.512.705q-.435.591-.861 1.193c-.185.26-.346.479-.472.673l-.072.11c-.152.235-.238.406-.282.559a.7.7 0 0 0-.03.314c.013.11.05.217.108.312q.046.07.1.138a1.6 1.6 0 0 0 .257.237 4.5 4.5 0 0 0 2.196.76 1.6 1.6 0 0 0 .349-.027 2 2 0 0 0 .163-.048.8.8 0 0 0 .278-.178.7.7 0 0 0 .17-.266c.059-.147.098-.335.123-.613l.012-.13c.02-.231.03-.502.045-.821q.037-.735.06-1.469l.033-.87a2.1 2.1 0 0 0-.055-.623 1 1 0 0 0-.117-.27Zm5.783 1.362a2.2 2.2 0 0 0-.498-.378l-.112-.067c-.199-.12-.438-.246-.719-.398q-.644-.353-1.295-.695l-.767-.407c-.04-.012-.08-.04-.118-.059a2 2 0 0 0-.466-.166 1 1 0 0 0-.17-.018.74.74 0 0 0-.725.616 1 1 0 0 0 .01.293c.038.204.13.406.224.583l.41.768q.341.65.696 1.294c.152.28.28.52.398.719q.036.057.068.112c.145.239.261.39.379.497a.73.73 0 0 0 .596.201 2 2 0 0 0 .168-.029 1.6 1.6 0 0 0 .325-.129 4 4 0 0 0 .855-.64c.306-.3.577-.63.788-1.006q.045-.08.076-.165a2 2 0 0 0 .051-.161q.019-.083.029-.168a.8.8 0 0 0-.038-.327.7.7 0 0 0-.165-.27\" />\n      </svg>\n    );\n  },\n);\n\nYelp.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Yelp;\n"
  },
  {
    "path": "src/icons/yin-yang.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst YinYang = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-yin-yang', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M9.167 4.5a1.167 1.167 0 1 1-2.334 0 1.167 1.167 0 0 1 2.334 0\" />\n        <path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1 8a7 7 0 0 1 7-7 3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 0 0 7 7 7 0 0 1-7-7m7 4.667a1.167 1.167 0 1 1 0-2.334 1.167 1.167 0 0 1 0 2.334\" />\n      </svg>\n    );\n  },\n);\n\nYinYang.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default YinYang;\n"
  },
  {
    "path": "src/icons/youtube.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst Youtube = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-youtube', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path d=\"M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z\" />\n      </svg>\n    );\n  },\n);\n\nYoutube.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default Youtube;\n"
  },
  {
    "path": "src/icons/zoom-in.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ZoomIn = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-zoom-in', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11M13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0\"\n        />\n        <path d=\"M10.344 11.742q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1 6.5 6.5 0 0 1-1.398 1.4z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nZoomIn.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ZoomIn;\n"
  },
  {
    "path": "src/icons/zoom-out.js",
    "content": "import React, { forwardRef } from 'react';\nimport PropTypes from 'prop-types';\n\nconst ZoomOut = forwardRef(\n  (\n    {\n      color = 'currentColor',\n      size = '1em',\n      title = null,\n      className = '',\n      ...rest\n    },\n    ref,\n  ) => {\n    return (\n      <svg\n        ref={ref}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        viewBox=\"0 0 16 16\"\n        width={size}\n        height={size}\n        fill={color}\n        className={['bi', 'bi-zoom-out', className].filter(Boolean).join(' ')}\n        {...rest}\n      >\n        {title ? <title>{title}</title> : null}\n\n        <path\n          fillRule=\"evenodd\"\n          d=\"M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11M13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0\"\n        />\n        <path d=\"M10.344 11.742q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1 6.5 6.5 0 0 1-1.398 1.4z\" />\n        <path\n          fillRule=\"evenodd\"\n          d=\"M3 6.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5\"\n        />\n      </svg>\n    );\n  },\n);\n\nZoomOut.propTypes = {\n  color: PropTypes.string,\n  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  title: PropTypes.string,\n  className: PropTypes.string,\n};\n\nexport default ZoomOut;\n"
  },
  {
    "path": "src/index.d.ts",
    "content": "/// <reference types=\"react\" />\nimport { FC, SVGAttributes } from 'react';\n\nexport interface IconProps extends SVGAttributes<SVGElement> {\n  color?: string;\n  size?: string | number;\n  title?: string;\n  className?: string;\n}\n\nexport type Icon = FC<IconProps>;\nexport const Icon0CircleFill: Icon;\nexport const Icon0Circle: Icon;\nexport const Icon0SquareFill: Icon;\nexport const Icon0Square: Icon;\nexport const Icon1CircleFill: Icon;\nexport const Icon1Circle: Icon;\nexport const Icon1SquareFill: Icon;\nexport const Icon1Square: Icon;\nexport const Icon123: Icon;\nexport const Icon2CircleFill: Icon;\nexport const Icon2Circle: Icon;\nexport const Icon2SquareFill: Icon;\nexport const Icon2Square: Icon;\nexport const Icon3CircleFill: Icon;\nexport const Icon3Circle: Icon;\nexport const Icon3SquareFill: Icon;\nexport const Icon3Square: Icon;\nexport const Icon4CircleFill: Icon;\nexport const Icon4Circle: Icon;\nexport const Icon4SquareFill: Icon;\nexport const Icon4Square: Icon;\nexport const Icon5CircleFill: Icon;\nexport const Icon5Circle: Icon;\nexport const Icon5SquareFill: Icon;\nexport const Icon5Square: Icon;\nexport const Icon6CircleFill: Icon;\nexport const Icon6Circle: Icon;\nexport const Icon6SquareFill: Icon;\nexport const Icon6Square: Icon;\nexport const Icon7CircleFill: Icon;\nexport const Icon7Circle: Icon;\nexport const Icon7SquareFill: Icon;\nexport const Icon7Square: Icon;\nexport const Icon8CircleFill: Icon;\nexport const Icon8Circle: Icon;\nexport const Icon8SquareFill: Icon;\nexport const Icon8Square: Icon;\nexport const Icon9CircleFill: Icon;\nexport const Icon9Circle: Icon;\nexport const Icon9SquareFill: Icon;\nexport const Icon9Square: Icon;\nexport const Activity: Icon;\nexport const AirplaneEnginesFill: Icon;\nexport const AirplaneEngines: Icon;\nexport const AirplaneFill: Icon;\nexport const Airplane: Icon;\nexport const AlarmFill: Icon;\nexport const Alarm: Icon;\nexport const Alexa: Icon;\nexport const AlignBottom: Icon;\nexport const AlignCenter: Icon;\nexport const AlignEnd: Icon;\nexport const AlignMiddle: Icon;\nexport const AlignStart: Icon;\nexport const AlignTop: Icon;\nexport const Alipay: Icon;\nexport const AlphabetUppercase: Icon;\nexport const Alphabet: Icon;\nexport const Alt: Icon;\nexport const Amazon: Icon;\nexport const Amd: Icon;\nexport const Android: Icon;\nexport const Android2: Icon;\nexport const Anthropic: Icon;\nexport const AppIndicator: Icon;\nexport const App: Icon;\nexport const AppleMusic: Icon;\nexport const Apple: Icon;\nexport const ArchiveFill: Icon;\nexport const Archive: Icon;\nexport const Arrow90degDown: Icon;\nexport const Arrow90degLeft: Icon;\nexport const Arrow90degRight: Icon;\nexport const Arrow90degUp: Icon;\nexport const ArrowBarDown: Icon;\nexport const ArrowBarLeft: Icon;\nexport const ArrowBarRight: Icon;\nexport const ArrowBarUp: Icon;\nexport const ArrowClockwise: Icon;\nexport const ArrowCounterclockwise: Icon;\nexport const ArrowDownCircleFill: Icon;\nexport const ArrowDownCircle: Icon;\nexport const ArrowDownLeftCircleFill: Icon;\nexport const ArrowDownLeftCircle: Icon;\nexport const ArrowDownLeftSquareFill: Icon;\nexport const ArrowDownLeftSquare: Icon;\nexport const ArrowDownLeft: Icon;\nexport const ArrowDownRightCircleFill: Icon;\nexport const ArrowDownRightCircle: Icon;\nexport const ArrowDownRightSquareFill: Icon;\nexport const ArrowDownRightSquare: Icon;\nexport const ArrowDownRight: Icon;\nexport const ArrowDownShort: Icon;\nexport const ArrowDownSquareFill: Icon;\nexport const ArrowDownSquare: Icon;\nexport const ArrowDownUp: Icon;\nexport const ArrowDown: Icon;\nexport const ArrowLeftCircleFill: Icon;\nexport const ArrowLeftCircle: Icon;\nexport const ArrowLeftRight: Icon;\nexport const ArrowLeftShort: Icon;\nexport const ArrowLeftSquareFill: Icon;\nexport const ArrowLeftSquare: Icon;\nexport const ArrowLeft: Icon;\nexport const ArrowRepeat: Icon;\nexport const ArrowReturnLeft: Icon;\nexport const ArrowReturnRight: Icon;\nexport const ArrowRightCircleFill: Icon;\nexport const ArrowRightCircle: Icon;\nexport const ArrowRightShort: Icon;\nexport const ArrowRightSquareFill: Icon;\nexport const ArrowRightSquare: Icon;\nexport const ArrowRight: Icon;\nexport const ArrowThroughHeartFill: Icon;\nexport const ArrowThroughHeart: Icon;\nexport const ArrowUpCircleFill: Icon;\nexport const ArrowUpCircle: Icon;\nexport const ArrowUpLeftCircleFill: Icon;\nexport const ArrowUpLeftCircle: Icon;\nexport const ArrowUpLeftSquareFill: Icon;\nexport const ArrowUpLeftSquare: Icon;\nexport const ArrowUpLeft: Icon;\nexport const ArrowUpRightCircleFill: Icon;\nexport const ArrowUpRightCircle: Icon;\nexport const ArrowUpRightSquareFill: Icon;\nexport const ArrowUpRightSquare: Icon;\nexport const ArrowUpRight: Icon;\nexport const ArrowUpShort: Icon;\nexport const ArrowUpSquareFill: Icon;\nexport const ArrowUpSquare: Icon;\nexport const ArrowUp: Icon;\nexport const ArrowsAngleContract: Icon;\nexport const ArrowsAngleExpand: Icon;\nexport const ArrowsCollapseVertical: Icon;\nexport const ArrowsCollapse: Icon;\nexport const ArrowsExpandVertical: Icon;\nexport const ArrowsExpand: Icon;\nexport const ArrowsFullscreen: Icon;\nexport const ArrowsMove: Icon;\nexport const ArrowsVertical: Icon;\nexport const Arrows: Icon;\nexport const AspectRatioFill: Icon;\nexport const AspectRatio: Icon;\nexport const Asterisk: Icon;\nexport const At: Icon;\nexport const AwardFill: Icon;\nexport const Award: Icon;\nexport const Back: Icon;\nexport const BackpackFill: Icon;\nexport const Backpack: Icon;\nexport const Backpack2Fill: Icon;\nexport const Backpack2: Icon;\nexport const Backpack3Fill: Icon;\nexport const Backpack3: Icon;\nexport const Backpack4Fill: Icon;\nexport const Backpack4: Icon;\nexport const BackspaceFill: Icon;\nexport const BackspaceReverseFill: Icon;\nexport const BackspaceReverse: Icon;\nexport const Backspace: Icon;\nexport const Badge3dFill: Icon;\nexport const Badge3d: Icon;\nexport const Badge4kFill: Icon;\nexport const Badge4k: Icon;\nexport const Badge8kFill: Icon;\nexport const Badge8k: Icon;\nexport const BadgeAdFill: Icon;\nexport const BadgeAd: Icon;\nexport const BadgeArFill: Icon;\nexport const BadgeAr: Icon;\nexport const BadgeCcFill: Icon;\nexport const BadgeCc: Icon;\nexport const BadgeHdFill: Icon;\nexport const BadgeHd: Icon;\nexport const BadgeSdFill: Icon;\nexport const BadgeSd: Icon;\nexport const BadgeTmFill: Icon;\nexport const BadgeTm: Icon;\nexport const BadgeVoFill: Icon;\nexport const BadgeVo: Icon;\nexport const BadgeVrFill: Icon;\nexport const BadgeVr: Icon;\nexport const BadgeWcFill: Icon;\nexport const BadgeWc: Icon;\nexport const BagCheckFill: Icon;\nexport const BagCheck: Icon;\nexport const BagDashFill: Icon;\nexport const BagDash: Icon;\nexport const BagFill: Icon;\nexport const BagHeartFill: Icon;\nexport const BagHeart: Icon;\nexport const BagPlusFill: Icon;\nexport const BagPlus: Icon;\nexport const BagXFill: Icon;\nexport const BagX: Icon;\nexport const Bag: Icon;\nexport const BalloonFill: Icon;\nexport const BalloonHeartFill: Icon;\nexport const BalloonHeart: Icon;\nexport const Balloon: Icon;\nexport const BanFill: Icon;\nexport const Ban: Icon;\nexport const BandaidFill: Icon;\nexport const Bandaid: Icon;\nexport const Bank: Icon;\nexport const Bank2: Icon;\nexport const BarChartFill: Icon;\nexport const BarChartLineFill: Icon;\nexport const BarChartLine: Icon;\nexport const BarChartSteps: Icon;\nexport const BarChart: Icon;\nexport const BasketFill: Icon;\nexport const Basket: Icon;\nexport const Basket2Fill: Icon;\nexport const Basket2: Icon;\nexport const Basket3Fill: Icon;\nexport const Basket3: Icon;\nexport const BatteryCharging: Icon;\nexport const BatteryFull: Icon;\nexport const BatteryHalf: Icon;\nexport const BatteryLow: Icon;\nexport const Battery: Icon;\nexport const BeakerFill: Icon;\nexport const Beaker: Icon;\nexport const Behance: Icon;\nexport const BellFill: Icon;\nexport const BellSlashFill: Icon;\nexport const BellSlash: Icon;\nexport const Bell: Icon;\nexport const Bezier: Icon;\nexport const Bezier2: Icon;\nexport const Bicycle: Icon;\nexport const Bing: Icon;\nexport const BinocularsFill: Icon;\nexport const Binoculars: Icon;\nexport const BlockquoteLeft: Icon;\nexport const BlockquoteRight: Icon;\nexport const Bluesky: Icon;\nexport const Bluetooth: Icon;\nexport const BodyText: Icon;\nexport const BookFill: Icon;\nexport const BookHalf: Icon;\nexport const Book: Icon;\nexport const BookmarkCheckFill: Icon;\nexport const BookmarkCheck: Icon;\nexport const BookmarkDashFill: Icon;\nexport const BookmarkDash: Icon;\nexport const BookmarkFill: Icon;\nexport const BookmarkHeartFill: Icon;\nexport const BookmarkHeart: Icon;\nexport const BookmarkPlusFill: Icon;\nexport const BookmarkPlus: Icon;\nexport const BookmarkStarFill: Icon;\nexport const BookmarkStar: Icon;\nexport const BookmarkXFill: Icon;\nexport const BookmarkX: Icon;\nexport const Bookmark: Icon;\nexport const BookmarksFill: Icon;\nexport const Bookmarks: Icon;\nexport const Bookshelf: Icon;\nexport const BoomboxFill: Icon;\nexport const Boombox: Icon;\nexport const BootstrapFill: Icon;\nexport const BootstrapReboot: Icon;\nexport const Bootstrap: Icon;\nexport const BorderAll: Icon;\nexport const BorderBottom: Icon;\nexport const BorderCenter: Icon;\nexport const BorderInner: Icon;\nexport const BorderLeft: Icon;\nexport const BorderMiddle: Icon;\nexport const BorderOuter: Icon;\nexport const BorderRight: Icon;\nexport const BorderStyle: Icon;\nexport const BorderTop: Icon;\nexport const BorderWidth: Icon;\nexport const Border: Icon;\nexport const BoundingBoxCircles: Icon;\nexport const BoundingBox: Icon;\nexport const BoxArrowDownLeft: Icon;\nexport const BoxArrowDownRight: Icon;\nexport const BoxArrowDown: Icon;\nexport const BoxArrowInDownLeft: Icon;\nexport const BoxArrowInDownRight: Icon;\nexport const BoxArrowInDown: Icon;\nexport const BoxArrowInLeft: Icon;\nexport const BoxArrowInRight: Icon;\nexport const BoxArrowInUpLeft: Icon;\nexport const BoxArrowInUpRight: Icon;\nexport const BoxArrowInUp: Icon;\nexport const BoxArrowLeft: Icon;\nexport const BoxArrowRight: Icon;\nexport const BoxArrowUpLeft: Icon;\nexport const BoxArrowUpRight: Icon;\nexport const BoxArrowUp: Icon;\nexport const BoxFill: Icon;\nexport const BoxSeamFill: Icon;\nexport const BoxSeam: Icon;\nexport const Box: Icon;\nexport const Box2Fill: Icon;\nexport const Box2HeartFill: Icon;\nexport const Box2Heart: Icon;\nexport const Box2: Icon;\nexport const Boxes: Icon;\nexport const BracesAsterisk: Icon;\nexport const Braces: Icon;\nexport const Bricks: Icon;\nexport const BriefcaseFill: Icon;\nexport const Briefcase: Icon;\nexport const BrightnessAltHighFill: Icon;\nexport const BrightnessAltHigh: Icon;\nexport const BrightnessAltLowFill: Icon;\nexport const BrightnessAltLow: Icon;\nexport const BrightnessHighFill: Icon;\nexport const BrightnessHigh: Icon;\nexport const BrightnessLowFill: Icon;\nexport const BrightnessLow: Icon;\nexport const Brilliance: Icon;\nexport const BroadcastPin: Icon;\nexport const Broadcast: Icon;\nexport const BrowserChrome: Icon;\nexport const BrowserEdge: Icon;\nexport const BrowserFirefox: Icon;\nexport const BrowserSafari: Icon;\nexport const BrushFill: Icon;\nexport const Brush: Icon;\nexport const BucketFill: Icon;\nexport const Bucket: Icon;\nexport const BugFill: Icon;\nexport const Bug: Icon;\nexport const BuildingAdd: Icon;\nexport const BuildingCheck: Icon;\nexport const BuildingDash: Icon;\nexport const BuildingDown: Icon;\nexport const BuildingExclamation: Icon;\nexport const BuildingFillAdd: Icon;\nexport const BuildingFillCheck: Icon;\nexport const BuildingFillDash: Icon;\nexport const BuildingFillDown: Icon;\nexport const BuildingFillExclamation: Icon;\nexport const BuildingFillGear: Icon;\nexport const BuildingFillLock: Icon;\nexport const BuildingFillSlash: Icon;\nexport const BuildingFillUp: Icon;\nexport const BuildingFillX: Icon;\nexport const BuildingFill: Icon;\nexport const BuildingGear: Icon;\nexport const BuildingLock: Icon;\nexport const BuildingSlash: Icon;\nexport const BuildingUp: Icon;\nexport const BuildingX: Icon;\nexport const Building: Icon;\nexport const BuildingsFill: Icon;\nexport const Buildings: Icon;\nexport const Bullseye: Icon;\nexport const BusFrontFill: Icon;\nexport const BusFront: Icon;\nexport const CCircleFill: Icon;\nexport const CCircle: Icon;\nexport const CSquareFill: Icon;\nexport const CSquare: Icon;\nexport const CakeFill: Icon;\nexport const Cake: Icon;\nexport const Cake2Fill: Icon;\nexport const Cake2: Icon;\nexport const CalculatorFill: Icon;\nexport const Calculator: Icon;\nexport const CalendarCheckFill: Icon;\nexport const CalendarCheck: Icon;\nexport const CalendarDateFill: Icon;\nexport const CalendarDate: Icon;\nexport const CalendarDayFill: Icon;\nexport const CalendarDay: Icon;\nexport const CalendarEventFill: Icon;\nexport const CalendarEvent: Icon;\nexport const CalendarFill: Icon;\nexport const CalendarHeartFill: Icon;\nexport const CalendarHeart: Icon;\nexport const CalendarMinusFill: Icon;\nexport const CalendarMinus: Icon;\nexport const CalendarMonthFill: Icon;\nexport const CalendarMonth: Icon;\nexport const CalendarPlusFill: Icon;\nexport const CalendarPlus: Icon;\nexport const CalendarRangeFill: Icon;\nexport const CalendarRange: Icon;\nexport const CalendarWeekFill: Icon;\nexport const CalendarWeek: Icon;\nexport const CalendarXFill: Icon;\nexport const CalendarX: Icon;\nexport const Calendar: Icon;\nexport const Calendar2CheckFill: Icon;\nexport const Calendar2Check: Icon;\nexport const Calendar2DateFill: Icon;\nexport const Calendar2Date: Icon;\nexport const Calendar2DayFill: Icon;\nexport const Calendar2Day: Icon;\nexport const Calendar2EventFill: Icon;\nexport const Calendar2Event: Icon;\nexport const Calendar2Fill: Icon;\nexport const Calendar2HeartFill: Icon;\nexport const Calendar2Heart: Icon;\nexport const Calendar2MinusFill: Icon;\nexport const Calendar2Minus: Icon;\nexport const Calendar2MonthFill: Icon;\nexport const Calendar2Month: Icon;\nexport const Calendar2PlusFill: Icon;\nexport const Calendar2Plus: Icon;\nexport const Calendar2RangeFill: Icon;\nexport const Calendar2Range: Icon;\nexport const Calendar2WeekFill: Icon;\nexport const Calendar2Week: Icon;\nexport const Calendar2XFill: Icon;\nexport const Calendar2X: Icon;\nexport const Calendar2: Icon;\nexport const Calendar3EventFill: Icon;\nexport const Calendar3Event: Icon;\nexport const Calendar3Fill: Icon;\nexport const Calendar3RangeFill: Icon;\nexport const Calendar3Range: Icon;\nexport const Calendar3WeekFill: Icon;\nexport const Calendar3Week: Icon;\nexport const Calendar3: Icon;\nexport const Calendar4Event: Icon;\nexport const Calendar4Range: Icon;\nexport const Calendar4Week: Icon;\nexport const Calendar4: Icon;\nexport const CameraFill: Icon;\nexport const CameraReelsFill: Icon;\nexport const CameraReels: Icon;\nexport const CameraVideoFill: Icon;\nexport const CameraVideoOffFill: Icon;\nexport const CameraVideoOff: Icon;\nexport const CameraVideo: Icon;\nexport const Camera: Icon;\nexport const Camera2: Icon;\nexport const CapslockFill: Icon;\nexport const Capslock: Icon;\nexport const CapsulePill: Icon;\nexport const Capsule: Icon;\nexport const CarFrontFill: Icon;\nexport const CarFront: Icon;\nexport const CardChecklist: Icon;\nexport const CardHeading: Icon;\nexport const CardImage: Icon;\nexport const CardList: Icon;\nexport const CardText: Icon;\nexport const CaretDownFill: Icon;\nexport const CaretDownSquareFill: Icon;\nexport const CaretDownSquare: Icon;\nexport const CaretDown: Icon;\nexport const CaretLeftFill: Icon;\nexport const CaretLeftSquareFill: Icon;\nexport const CaretLeftSquare: Icon;\nexport const CaretLeft: Icon;\nexport const CaretRightFill: Icon;\nexport const CaretRightSquareFill: Icon;\nexport const CaretRightSquare: Icon;\nexport const CaretRight: Icon;\nexport const CaretUpFill: Icon;\nexport const CaretUpSquareFill: Icon;\nexport const CaretUpSquare: Icon;\nexport const CaretUp: Icon;\nexport const CartCheckFill: Icon;\nexport const CartCheck: Icon;\nexport const CartDashFill: Icon;\nexport const CartDash: Icon;\nexport const CartFill: Icon;\nexport const CartPlusFill: Icon;\nexport const CartPlus: Icon;\nexport const CartXFill: Icon;\nexport const CartX: Icon;\nexport const Cart: Icon;\nexport const Cart2: Icon;\nexport const Cart3: Icon;\nexport const Cart4: Icon;\nexport const CashCoin: Icon;\nexport const CashStack: Icon;\nexport const Cash: Icon;\nexport const CassetteFill: Icon;\nexport const Cassette: Icon;\nexport const Cast: Icon;\nexport const CcCircleFill: Icon;\nexport const CcCircle: Icon;\nexport const CcSquareFill: Icon;\nexport const CcSquare: Icon;\nexport const ChatDotsFill: Icon;\nexport const ChatDots: Icon;\nexport const ChatFill: Icon;\nexport const ChatHeartFill: Icon;\nexport const ChatHeart: Icon;\nexport const ChatLeftDotsFill: Icon;\nexport const ChatLeftDots: Icon;\nexport const ChatLeftFill: Icon;\nexport const ChatLeftHeartFill: Icon;\nexport const ChatLeftHeart: Icon;\nexport const ChatLeftQuoteFill: Icon;\nexport const ChatLeftQuote: Icon;\nexport const ChatLeftTextFill: Icon;\nexport const ChatLeftText: Icon;\nexport const ChatLeft: Icon;\nexport const ChatQuoteFill: Icon;\nexport const ChatQuote: Icon;\nexport const ChatRightDotsFill: Icon;\nexport const ChatRightDots: Icon;\nexport const ChatRightFill: Icon;\nexport const ChatRightHeartFill: Icon;\nexport const ChatRightHeart: Icon;\nexport const ChatRightQuoteFill: Icon;\nexport const ChatRightQuote: Icon;\nexport const ChatRightTextFill: Icon;\nexport const ChatRightText: Icon;\nexport const ChatRight: Icon;\nexport const ChatSquareDotsFill: Icon;\nexport const ChatSquareDots: Icon;\nexport const ChatSquareFill: Icon;\nexport const ChatSquareHeartFill: Icon;\nexport const ChatSquareHeart: Icon;\nexport const ChatSquareQuoteFill: Icon;\nexport const ChatSquareQuote: Icon;\nexport const ChatSquareTextFill: Icon;\nexport const ChatSquareText: Icon;\nexport const ChatSquare: Icon;\nexport const ChatTextFill: Icon;\nexport const ChatText: Icon;\nexport const Chat: Icon;\nexport const CheckAll: Icon;\nexport const CheckCircleFill: Icon;\nexport const CheckCircle: Icon;\nexport const CheckLg: Icon;\nexport const CheckSquareFill: Icon;\nexport const CheckSquare: Icon;\nexport const Check: Icon;\nexport const Check2All: Icon;\nexport const Check2Circle: Icon;\nexport const Check2Square: Icon;\nexport const Check2: Icon;\nexport const ChevronBarContract: Icon;\nexport const ChevronBarDown: Icon;\nexport const ChevronBarExpand: Icon;\nexport const ChevronBarLeft: Icon;\nexport const ChevronBarRight: Icon;\nexport const ChevronBarUp: Icon;\nexport const ChevronCompactDown: Icon;\nexport const ChevronCompactLeft: Icon;\nexport const ChevronCompactRight: Icon;\nexport const ChevronCompactUp: Icon;\nexport const ChevronContract: Icon;\nexport const ChevronDoubleDown: Icon;\nexport const ChevronDoubleLeft: Icon;\nexport const ChevronDoubleRight: Icon;\nexport const ChevronDoubleUp: Icon;\nexport const ChevronDown: Icon;\nexport const ChevronExpand: Icon;\nexport const ChevronLeft: Icon;\nexport const ChevronRight: Icon;\nexport const ChevronUp: Icon;\nexport const CircleFill: Icon;\nexport const CircleHalf: Icon;\nexport const CircleSquare: Icon;\nexport const Circle: Icon;\nexport const Claude: Icon;\nexport const ClipboardCheckFill: Icon;\nexport const ClipboardCheck: Icon;\nexport const ClipboardDataFill: Icon;\nexport const ClipboardData: Icon;\nexport const ClipboardFill: Icon;\nexport const ClipboardHeartFill: Icon;\nexport const ClipboardHeart: Icon;\nexport const ClipboardMinusFill: Icon;\nexport const ClipboardMinus: Icon;\nexport const ClipboardPlusFill: Icon;\nexport const ClipboardPlus: Icon;\nexport const ClipboardPulse: Icon;\nexport const ClipboardXFill: Icon;\nexport const ClipboardX: Icon;\nexport const Clipboard: Icon;\nexport const Clipboard2CheckFill: Icon;\nexport const Clipboard2Check: Icon;\nexport const Clipboard2DataFill: Icon;\nexport const Clipboard2Data: Icon;\nexport const Clipboard2Fill: Icon;\nexport const Clipboard2HeartFill: Icon;\nexport const Clipboard2Heart: Icon;\nexport const Clipboard2MinusFill: Icon;\nexport const Clipboard2Minus: Icon;\nexport const Clipboard2PlusFill: Icon;\nexport const Clipboard2Plus: Icon;\nexport const Clipboard2PulseFill: Icon;\nexport const Clipboard2Pulse: Icon;\nexport const Clipboard2XFill: Icon;\nexport const Clipboard2X: Icon;\nexport const Clipboard2: Icon;\nexport const ClockFill: Icon;\nexport const ClockHistory: Icon;\nexport const Clock: Icon;\nexport const CloudArrowDownFill: Icon;\nexport const CloudArrowDown: Icon;\nexport const CloudArrowUpFill: Icon;\nexport const CloudArrowUp: Icon;\nexport const CloudCheckFill: Icon;\nexport const CloudCheck: Icon;\nexport const CloudDownloadFill: Icon;\nexport const CloudDownload: Icon;\nexport const CloudDrizzleFill: Icon;\nexport const CloudDrizzle: Icon;\nexport const CloudFill: Icon;\nexport const CloudFogFill: Icon;\nexport const CloudFog: Icon;\nexport const CloudFog2Fill: Icon;\nexport const CloudFog2: Icon;\nexport const CloudHailFill: Icon;\nexport const CloudHail: Icon;\nexport const CloudHazeFill: Icon;\nexport const CloudHaze: Icon;\nexport const CloudHaze2Fill: Icon;\nexport const CloudHaze2: Icon;\nexport const CloudLightningFill: Icon;\nexport const CloudLightningRainFill: Icon;\nexport const CloudLightningRain: Icon;\nexport const CloudLightning: Icon;\nexport const CloudMinusFill: Icon;\nexport const CloudMinus: Icon;\nexport const CloudMoonFill: Icon;\nexport const CloudMoon: Icon;\nexport const CloudPlusFill: Icon;\nexport const CloudPlus: Icon;\nexport const CloudRainFill: Icon;\nexport const CloudRainHeavyFill: Icon;\nexport const CloudRainHeavy: Icon;\nexport const CloudRain: Icon;\nexport const CloudSlashFill: Icon;\nexport const CloudSlash: Icon;\nexport const CloudSleetFill: Icon;\nexport const CloudSleet: Icon;\nexport const CloudSnowFill: Icon;\nexport const CloudSnow: Icon;\nexport const CloudSunFill: Icon;\nexport const CloudSun: Icon;\nexport const CloudUploadFill: Icon;\nexport const CloudUpload: Icon;\nexport const Cloud: Icon;\nexport const CloudsFill: Icon;\nexport const Clouds: Icon;\nexport const CloudyFill: Icon;\nexport const Cloudy: Icon;\nexport const CodeSlash: Icon;\nexport const CodeSquare: Icon;\nexport const Code: Icon;\nexport const Coin: Icon;\nexport const CollectionFill: Icon;\nexport const CollectionPlayFill: Icon;\nexport const CollectionPlay: Icon;\nexport const Collection: Icon;\nexport const ColumnsGap: Icon;\nexport const Columns: Icon;\nexport const Command: Icon;\nexport const CompassFill: Icon;\nexport const Compass: Icon;\nexport const ConeStriped: Icon;\nexport const Cone: Icon;\nexport const Controller: Icon;\nexport const Cookie: Icon;\nexport const Copy: Icon;\nexport const CpuFill: Icon;\nexport const Cpu: Icon;\nexport const CreditCard2BackFill: Icon;\nexport const CreditCard2Back: Icon;\nexport const CreditCard2FrontFill: Icon;\nexport const CreditCard2Front: Icon;\nexport const CreditCardFill: Icon;\nexport const CreditCard: Icon;\nexport const Crop: Icon;\nexport const Crosshair: Icon;\nexport const Crosshair2: Icon;\nexport const Css: Icon;\nexport const CupFill: Icon;\nexport const CupHotFill: Icon;\nexport const CupHot: Icon;\nexport const CupStraw: Icon;\nexport const Cup: Icon;\nexport const CurrencyBitcoin: Icon;\nexport const CurrencyDollar: Icon;\nexport const CurrencyEuro: Icon;\nexport const CurrencyExchange: Icon;\nexport const CurrencyPound: Icon;\nexport const CurrencyRupee: Icon;\nexport const CurrencyYen: Icon;\nexport const CursorFill: Icon;\nexport const CursorText: Icon;\nexport const Cursor: Icon;\nexport const DashCircleDotted: Icon;\nexport const DashCircleFill: Icon;\nexport const DashCircle: Icon;\nexport const DashLg: Icon;\nexport const DashSquareDotted: Icon;\nexport const DashSquareFill: Icon;\nexport const DashSquare: Icon;\nexport const Dash: Icon;\nexport const DatabaseAdd: Icon;\nexport const DatabaseCheck: Icon;\nexport const DatabaseDash: Icon;\nexport const DatabaseDown: Icon;\nexport const DatabaseExclamation: Icon;\nexport const DatabaseFillAdd: Icon;\nexport const DatabaseFillCheck: Icon;\nexport const DatabaseFillDash: Icon;\nexport const DatabaseFillDown: Icon;\nexport const DatabaseFillExclamation: Icon;\nexport const DatabaseFillGear: Icon;\nexport const DatabaseFillLock: Icon;\nexport const DatabaseFillSlash: Icon;\nexport const DatabaseFillUp: Icon;\nexport const DatabaseFillX: Icon;\nexport const DatabaseFill: Icon;\nexport const DatabaseGear: Icon;\nexport const DatabaseLock: Icon;\nexport const DatabaseSlash: Icon;\nexport const DatabaseUp: Icon;\nexport const DatabaseX: Icon;\nexport const Database: Icon;\nexport const DeviceHddFill: Icon;\nexport const DeviceHdd: Icon;\nexport const DeviceSsdFill: Icon;\nexport const DeviceSsd: Icon;\nexport const Diagram2Fill: Icon;\nexport const Diagram2: Icon;\nexport const Diagram3Fill: Icon;\nexport const Diagram3: Icon;\nexport const DiamondFill: Icon;\nexport const DiamondHalf: Icon;\nexport const Diamond: Icon;\nexport const Dice1Fill: Icon;\nexport const Dice1: Icon;\nexport const Dice2Fill: Icon;\nexport const Dice2: Icon;\nexport const Dice3Fill: Icon;\nexport const Dice3: Icon;\nexport const Dice4Fill: Icon;\nexport const Dice4: Icon;\nexport const Dice5Fill: Icon;\nexport const Dice5: Icon;\nexport const Dice6Fill: Icon;\nexport const Dice6: Icon;\nexport const DiscFill: Icon;\nexport const Disc: Icon;\nexport const Discord: Icon;\nexport const DisplayFill: Icon;\nexport const Display: Icon;\nexport const DisplayportFill: Icon;\nexport const Displayport: Icon;\nexport const DistributeHorizontal: Icon;\nexport const DistributeVertical: Icon;\nexport const DoorClosedFill: Icon;\nexport const DoorClosed: Icon;\nexport const DoorOpenFill: Icon;\nexport const DoorOpen: Icon;\nexport const Dot: Icon;\nexport const Download: Icon;\nexport const DpadFill: Icon;\nexport const Dpad: Icon;\nexport const Dribbble: Icon;\nexport const Dropbox: Icon;\nexport const DropletFill: Icon;\nexport const DropletHalf: Icon;\nexport const Droplet: Icon;\nexport const DuffleFill: Icon;\nexport const Duffle: Icon;\nexport const EarFill: Icon;\nexport const Ear: Icon;\nexport const Earbuds: Icon;\nexport const EaselFill: Icon;\nexport const Easel: Icon;\nexport const Easel2Fill: Icon;\nexport const Easel2: Icon;\nexport const Easel3Fill: Icon;\nexport const Easel3: Icon;\nexport const EggFill: Icon;\nexport const EggFried: Icon;\nexport const Egg: Icon;\nexport const EjectFill: Icon;\nexport const Eject: Icon;\nexport const EmojiAngryFill: Icon;\nexport const EmojiAngry: Icon;\nexport const EmojiAstonishedFill: Icon;\nexport const EmojiAstonished: Icon;\nexport const EmojiDizzyFill: Icon;\nexport const EmojiDizzy: Icon;\nexport const EmojiExpressionlessFill: Icon;\nexport const EmojiExpressionless: Icon;\nexport const EmojiFrownFill: Icon;\nexport const EmojiFrown: Icon;\nexport const EmojiGrimaceFill: Icon;\nexport const EmojiGrimace: Icon;\nexport const EmojiGrinFill: Icon;\nexport const EmojiGrin: Icon;\nexport const EmojiHeartEyesFill: Icon;\nexport const EmojiHeartEyes: Icon;\nexport const EmojiKissFill: Icon;\nexport const EmojiKiss: Icon;\nexport const EmojiLaughingFill: Icon;\nexport const EmojiLaughing: Icon;\nexport const EmojiNeutralFill: Icon;\nexport const EmojiNeutral: Icon;\nexport const EmojiSmileFill: Icon;\nexport const EmojiSmileUpsideDownFill: Icon;\nexport const EmojiSmileUpsideDown: Icon;\nexport const EmojiSmile: Icon;\nexport const EmojiSunglassesFill: Icon;\nexport const EmojiSunglasses: Icon;\nexport const EmojiSurpriseFill: Icon;\nexport const EmojiSurprise: Icon;\nexport const EmojiTearFill: Icon;\nexport const EmojiTear: Icon;\nexport const EmojiWinkFill: Icon;\nexport const EmojiWink: Icon;\nexport const EnvelopeArrowDownFill: Icon;\nexport const EnvelopeArrowDown: Icon;\nexport const EnvelopeArrowUpFill: Icon;\nexport const EnvelopeArrowUp: Icon;\nexport const EnvelopeAtFill: Icon;\nexport const EnvelopeAt: Icon;\nexport const EnvelopeCheckFill: Icon;\nexport const EnvelopeCheck: Icon;\nexport const EnvelopeDashFill: Icon;\nexport const EnvelopeDash: Icon;\nexport const EnvelopeExclamationFill: Icon;\nexport const EnvelopeExclamation: Icon;\nexport const EnvelopeFill: Icon;\nexport const EnvelopeHeartFill: Icon;\nexport const EnvelopeHeart: Icon;\nexport const EnvelopeOpenFill: Icon;\nexport const EnvelopeOpenHeartFill: Icon;\nexport const EnvelopeOpenHeart: Icon;\nexport const EnvelopeOpen: Icon;\nexport const EnvelopePaperFill: Icon;\nexport const EnvelopePaperHeartFill: Icon;\nexport const EnvelopePaperHeart: Icon;\nexport const EnvelopePaper: Icon;\nexport const EnvelopePlusFill: Icon;\nexport const EnvelopePlus: Icon;\nexport const EnvelopeSlashFill: Icon;\nexport const EnvelopeSlash: Icon;\nexport const EnvelopeXFill: Icon;\nexport const EnvelopeX: Icon;\nexport const Envelope: Icon;\nexport const EraserFill: Icon;\nexport const Eraser: Icon;\nexport const Escape: Icon;\nexport const Ethernet: Icon;\nexport const EvFrontFill: Icon;\nexport const EvFront: Icon;\nexport const EvStationFill: Icon;\nexport const EvStation: Icon;\nexport const ExclamationCircleFill: Icon;\nexport const ExclamationCircle: Icon;\nexport const ExclamationDiamondFill: Icon;\nexport const ExclamationDiamond: Icon;\nexport const ExclamationLg: Icon;\nexport const ExclamationOctagonFill: Icon;\nexport const ExclamationOctagon: Icon;\nexport const ExclamationSquareFill: Icon;\nexport const ExclamationSquare: Icon;\nexport const ExclamationTriangleFill: Icon;\nexport const ExclamationTriangle: Icon;\nexport const Exclamation: Icon;\nexport const Exclude: Icon;\nexport const ExplicitFill: Icon;\nexport const Explicit: Icon;\nexport const Exposure: Icon;\nexport const EyeFill: Icon;\nexport const EyeSlashFill: Icon;\nexport const EyeSlash: Icon;\nexport const Eye: Icon;\nexport const Eyedropper: Icon;\nexport const Eyeglasses: Icon;\nexport const Facebook: Icon;\nexport const Fan: Icon;\nexport const FastForwardBtnFill: Icon;\nexport const FastForwardBtn: Icon;\nexport const FastForwardCircleFill: Icon;\nexport const FastForwardCircle: Icon;\nexport const FastForwardFill: Icon;\nexport const FastForward: Icon;\nexport const Feather: Icon;\nexport const Feather2: Icon;\nexport const FileArrowDownFill: Icon;\nexport const FileArrowDown: Icon;\nexport const FileArrowUpFill: Icon;\nexport const FileArrowUp: Icon;\nexport const FileBarGraphFill: Icon;\nexport const FileBarGraph: Icon;\nexport const FileBinaryFill: Icon;\nexport const FileBinary: Icon;\nexport const FileBreakFill: Icon;\nexport const FileBreak: Icon;\nexport const FileCheckFill: Icon;\nexport const FileCheck: Icon;\nexport const FileCodeFill: Icon;\nexport const FileCode: Icon;\nexport const FileDiffFill: Icon;\nexport const FileDiff: Icon;\nexport const FileEarmarkArrowDownFill: Icon;\nexport const FileEarmarkArrowDown: Icon;\nexport const FileEarmarkArrowUpFill: Icon;\nexport const FileEarmarkArrowUp: Icon;\nexport const FileEarmarkBarGraphFill: Icon;\nexport const FileEarmarkBarGraph: Icon;\nexport const FileEarmarkBinaryFill: Icon;\nexport const FileEarmarkBinary: Icon;\nexport const FileEarmarkBreakFill: Icon;\nexport const FileEarmarkBreak: Icon;\nexport const FileEarmarkCheckFill: Icon;\nexport const FileEarmarkCheck: Icon;\nexport const FileEarmarkCodeFill: Icon;\nexport const FileEarmarkCode: Icon;\nexport const FileEarmarkDiffFill: Icon;\nexport const FileEarmarkDiff: Icon;\nexport const FileEarmarkEaselFill: Icon;\nexport const FileEarmarkEasel: Icon;\nexport const FileEarmarkExcelFill: Icon;\nexport const FileEarmarkExcel: Icon;\nexport const FileEarmarkFill: Icon;\nexport const FileEarmarkFontFill: Icon;\nexport const FileEarmarkFont: Icon;\nexport const FileEarmarkImageFill: Icon;\nexport const FileEarmarkImage: Icon;\nexport const FileEarmarkLockFill: Icon;\nexport const FileEarmarkLock: Icon;\nexport const FileEarmarkLock2Fill: Icon;\nexport const FileEarmarkLock2: Icon;\nexport const FileEarmarkMedicalFill: Icon;\nexport const FileEarmarkMedical: Icon;\nexport const FileEarmarkMinusFill: Icon;\nexport const FileEarmarkMinus: Icon;\nexport const FileEarmarkMusicFill: Icon;\nexport const FileEarmarkMusic: Icon;\nexport const FileEarmarkPdfFill: Icon;\nexport const FileEarmarkPdf: Icon;\nexport const FileEarmarkPersonFill: Icon;\nexport const FileEarmarkPerson: Icon;\nexport const FileEarmarkPlayFill: Icon;\nexport const FileEarmarkPlay: Icon;\nexport const FileEarmarkPlusFill: Icon;\nexport const FileEarmarkPlus: Icon;\nexport const FileEarmarkPostFill: Icon;\nexport const FileEarmarkPost: Icon;\nexport const FileEarmarkPptFill: Icon;\nexport const FileEarmarkPpt: Icon;\nexport const FileEarmarkRichtextFill: Icon;\nexport const FileEarmarkRichtext: Icon;\nexport const FileEarmarkRuledFill: Icon;\nexport const FileEarmarkRuled: Icon;\nexport const FileEarmarkSlidesFill: Icon;\nexport const FileEarmarkSlides: Icon;\nexport const FileEarmarkSpreadsheetFill: Icon;\nexport const FileEarmarkSpreadsheet: Icon;\nexport const FileEarmarkTextFill: Icon;\nexport const FileEarmarkText: Icon;\nexport const FileEarmarkWordFill: Icon;\nexport const FileEarmarkWord: Icon;\nexport const FileEarmarkXFill: Icon;\nexport const FileEarmarkX: Icon;\nexport const FileEarmarkZipFill: Icon;\nexport const FileEarmarkZip: Icon;\nexport const FileEarmark: Icon;\nexport const FileEaselFill: Icon;\nexport const FileEasel: Icon;\nexport const FileExcelFill: Icon;\nexport const FileExcel: Icon;\nexport const FileFill: Icon;\nexport const FileFontFill: Icon;\nexport const FileFont: Icon;\nexport const FileImageFill: Icon;\nexport const FileImage: Icon;\nexport const FileLockFill: Icon;\nexport const FileLock: Icon;\nexport const FileLock2Fill: Icon;\nexport const FileLock2: Icon;\nexport const FileMedicalFill: Icon;\nexport const FileMedical: Icon;\nexport const FileMinusFill: Icon;\nexport const FileMinus: Icon;\nexport const FileMusicFill: Icon;\nexport const FileMusic: Icon;\nexport const FilePdfFill: Icon;\nexport const FilePdf: Icon;\nexport const FilePersonFill: Icon;\nexport const FilePerson: Icon;\nexport const FilePlayFill: Icon;\nexport const FilePlay: Icon;\nexport const FilePlusFill: Icon;\nexport const FilePlus: Icon;\nexport const FilePostFill: Icon;\nexport const FilePost: Icon;\nexport const FilePptFill: Icon;\nexport const FilePpt: Icon;\nexport const FileRichtextFill: Icon;\nexport const FileRichtext: Icon;\nexport const FileRuledFill: Icon;\nexport const FileRuled: Icon;\nexport const FileSlidesFill: Icon;\nexport const FileSlides: Icon;\nexport const FileSpreadsheetFill: Icon;\nexport const FileSpreadsheet: Icon;\nexport const FileTextFill: Icon;\nexport const FileText: Icon;\nexport const FileWordFill: Icon;\nexport const FileWord: Icon;\nexport const FileXFill: Icon;\nexport const FileX: Icon;\nexport const FileZipFill: Icon;\nexport const FileZip: Icon;\nexport const File: Icon;\nexport const FilesAlt: Icon;\nexport const Files: Icon;\nexport const FiletypeAac: Icon;\nexport const FiletypeAi: Icon;\nexport const FiletypeBmp: Icon;\nexport const FiletypeCs: Icon;\nexport const FiletypeCss: Icon;\nexport const FiletypeCsv: Icon;\nexport const FiletypeDoc: Icon;\nexport const FiletypeDocx: Icon;\nexport const FiletypeExe: Icon;\nexport const FiletypeGif: Icon;\nexport const FiletypeHeic: Icon;\nexport const FiletypeHtml: Icon;\nexport const FiletypeJava: Icon;\nexport const FiletypeJpg: Icon;\nexport const FiletypeJs: Icon;\nexport const FiletypeJson: Icon;\nexport const FiletypeJsx: Icon;\nexport const FiletypeKey: Icon;\nexport const FiletypeM4p: Icon;\nexport const FiletypeMd: Icon;\nexport const FiletypeMdx: Icon;\nexport const FiletypeMov: Icon;\nexport const FiletypeMp3: Icon;\nexport const FiletypeMp4: Icon;\nexport const FiletypeOtf: Icon;\nexport const FiletypePdf: Icon;\nexport const FiletypePhp: Icon;\nexport const FiletypePng: Icon;\nexport const FiletypePpt: Icon;\nexport const FiletypePptx: Icon;\nexport const FiletypePsd: Icon;\nexport const FiletypePy: Icon;\nexport const FiletypeRaw: Icon;\nexport const FiletypeRb: Icon;\nexport const FiletypeSass: Icon;\nexport const FiletypeScss: Icon;\nexport const FiletypeSh: Icon;\nexport const FiletypeSql: Icon;\nexport const FiletypeSvg: Icon;\nexport const FiletypeTiff: Icon;\nexport const FiletypeTsx: Icon;\nexport const FiletypeTtf: Icon;\nexport const FiletypeTxt: Icon;\nexport const FiletypeWav: Icon;\nexport const FiletypeWoff: Icon;\nexport const FiletypeXls: Icon;\nexport const FiletypeXlsx: Icon;\nexport const FiletypeXml: Icon;\nexport const FiletypeYml: Icon;\nexport const Film: Icon;\nexport const FilterCircleFill: Icon;\nexport const FilterCircle: Icon;\nexport const FilterLeft: Icon;\nexport const FilterRight: Icon;\nexport const FilterSquareFill: Icon;\nexport const FilterSquare: Icon;\nexport const Filter: Icon;\nexport const Fingerprint: Icon;\nexport const Fire: Icon;\nexport const FlagFill: Icon;\nexport const Flag: Icon;\nexport const FlaskFill: Icon;\nexport const FlaskFlorenceFill: Icon;\nexport const FlaskFlorence: Icon;\nexport const Flask: Icon;\nexport const FloppyFill: Icon;\nexport const Floppy: Icon;\nexport const Floppy2Fill: Icon;\nexport const Floppy2: Icon;\nexport const Flower1: Icon;\nexport const Flower2: Icon;\nexport const Flower3: Icon;\nexport const FolderCheck: Icon;\nexport const FolderFill: Icon;\nexport const FolderMinus: Icon;\nexport const FolderPlus: Icon;\nexport const FolderSymlinkFill: Icon;\nexport const FolderSymlink: Icon;\nexport const FolderX: Icon;\nexport const Folder: Icon;\nexport const Folder2Open: Icon;\nexport const Folder2: Icon;\nexport const Fonts: Icon;\nexport const ForkKnife: Icon;\nexport const ForwardFill: Icon;\nexport const Forward: Icon;\nexport const Front: Icon;\nexport const FuelPumpDieselFill: Icon;\nexport const FuelPumpDiesel: Icon;\nexport const FuelPumpFill: Icon;\nexport const FuelPump: Icon;\nexport const FullscreenExit: Icon;\nexport const Fullscreen: Icon;\nexport const FunnelFill: Icon;\nexport const Funnel: Icon;\nexport const GearFill: Icon;\nexport const GearWideConnected: Icon;\nexport const GearWide: Icon;\nexport const Gear: Icon;\nexport const Gem: Icon;\nexport const GenderAmbiguous: Icon;\nexport const GenderFemale: Icon;\nexport const GenderMale: Icon;\nexport const GenderNeuter: Icon;\nexport const GenderTrans: Icon;\nexport const GeoAltFill: Icon;\nexport const GeoAlt: Icon;\nexport const GeoFill: Icon;\nexport const Geo: Icon;\nexport const GiftFill: Icon;\nexport const Gift: Icon;\nexport const Git: Icon;\nexport const Github: Icon;\nexport const Gitlab: Icon;\nexport const GlobeAmericasFill: Icon;\nexport const GlobeAmericas: Icon;\nexport const GlobeAsiaAustraliaFill: Icon;\nexport const GlobeAsiaAustralia: Icon;\nexport const GlobeCentralSouthAsiaFill: Icon;\nexport const GlobeCentralSouthAsia: Icon;\nexport const GlobeEuropeAfricaFill: Icon;\nexport const GlobeEuropeAfrica: Icon;\nexport const Globe: Icon;\nexport const Globe2: Icon;\nexport const GooglePlay: Icon;\nexport const Google: Icon;\nexport const GpuCard: Icon;\nexport const GraphDownArrow: Icon;\nexport const GraphDown: Icon;\nexport const GraphUpArrow: Icon;\nexport const GraphUp: Icon;\nexport const Grid1x2Fill: Icon;\nexport const Grid1x2: Icon;\nexport const Grid3x2GapFill: Icon;\nexport const Grid3x2Gap: Icon;\nexport const Grid3x2: Icon;\nexport const Grid3x3GapFill: Icon;\nexport const Grid3x3Gap: Icon;\nexport const Grid3x3: Icon;\nexport const GridFill: Icon;\nexport const Grid: Icon;\nexport const GripHorizontal: Icon;\nexport const GripVertical: Icon;\nexport const HCircleFill: Icon;\nexport const HCircle: Icon;\nexport const HSquareFill: Icon;\nexport const HSquare: Icon;\nexport const Hammer: Icon;\nexport const HandIndexFill: Icon;\nexport const HandIndexThumbFill: Icon;\nexport const HandIndexThumb: Icon;\nexport const HandIndex: Icon;\nexport const HandThumbsDownFill: Icon;\nexport const HandThumbsDown: Icon;\nexport const HandThumbsUpFill: Icon;\nexport const HandThumbsUp: Icon;\nexport const HandbagFill: Icon;\nexport const Handbag: Icon;\nexport const Hash: Icon;\nexport const HddFill: Icon;\nexport const HddNetworkFill: Icon;\nexport const HddNetwork: Icon;\nexport const HddRackFill: Icon;\nexport const HddRack: Icon;\nexport const HddStackFill: Icon;\nexport const HddStack: Icon;\nexport const Hdd: Icon;\nexport const HdmiFill: Icon;\nexport const Hdmi: Icon;\nexport const Headphones: Icon;\nexport const HeadsetVr: Icon;\nexport const Headset: Icon;\nexport const HeartArrow: Icon;\nexport const HeartFill: Icon;\nexport const HeartHalf: Icon;\nexport const HeartPulseFill: Icon;\nexport const HeartPulse: Icon;\nexport const Heart: Icon;\nexport const HeartbreakFill: Icon;\nexport const Heartbreak: Icon;\nexport const Hearts: Icon;\nexport const HeptagonFill: Icon;\nexport const HeptagonHalf: Icon;\nexport const Heptagon: Icon;\nexport const HexagonFill: Icon;\nexport const HexagonHalf: Icon;\nexport const Hexagon: Icon;\nexport const Highlighter: Icon;\nexport const Highlights: Icon;\nexport const HospitalFill: Icon;\nexport const Hospital: Icon;\nexport const HourglassBottom: Icon;\nexport const HourglassSplit: Icon;\nexport const HourglassTop: Icon;\nexport const Hourglass: Icon;\nexport const HouseAddFill: Icon;\nexport const HouseAdd: Icon;\nexport const HouseCheckFill: Icon;\nexport const HouseCheck: Icon;\nexport const HouseDashFill: Icon;\nexport const HouseDash: Icon;\nexport const HouseDoorFill: Icon;\nexport const HouseDoor: Icon;\nexport const HouseDownFill: Icon;\nexport const HouseDown: Icon;\nexport const HouseExclamationFill: Icon;\nexport const HouseExclamation: Icon;\nexport const HouseFill: Icon;\nexport const HouseGearFill: Icon;\nexport const HouseGear: Icon;\nexport const HouseHeartFill: Icon;\nexport const HouseHeart: Icon;\nexport const HouseLockFill: Icon;\nexport const HouseLock: Icon;\nexport const HouseSlashFill: Icon;\nexport const HouseSlash: Icon;\nexport const HouseUpFill: Icon;\nexport const HouseUp: Icon;\nexport const HouseXFill: Icon;\nexport const HouseX: Icon;\nexport const House: Icon;\nexport const HousesFill: Icon;\nexport const Houses: Icon;\nexport const Hr: Icon;\nexport const Hurricane: Icon;\nexport const Hypnotize: Icon;\nexport const ImageAlt: Icon;\nexport const ImageFill: Icon;\nexport const Image: Icon;\nexport const Images: Icon;\nexport const InboxFill: Icon;\nexport const Inbox: Icon;\nexport const InboxesFill: Icon;\nexport const Inboxes: Icon;\nexport const Incognito: Icon;\nexport const Indent: Icon;\nexport const Infinity: Icon;\nexport const InfoCircleFill: Icon;\nexport const InfoCircle: Icon;\nexport const InfoLg: Icon;\nexport const InfoSquareFill: Icon;\nexport const InfoSquare: Icon;\nexport const Info: Icon;\nexport const InputCursorText: Icon;\nexport const InputCursor: Icon;\nexport const Instagram: Icon;\nexport const Intersect: Icon;\nexport const Javascript: Icon;\nexport const JournalAlbum: Icon;\nexport const JournalArrowDown: Icon;\nexport const JournalArrowUp: Icon;\nexport const JournalBookmarkFill: Icon;\nexport const JournalBookmark: Icon;\nexport const JournalCheck: Icon;\nexport const JournalCode: Icon;\nexport const JournalMedical: Icon;\nexport const JournalMinus: Icon;\nexport const JournalPlus: Icon;\nexport const JournalRichtext: Icon;\nexport const JournalText: Icon;\nexport const JournalX: Icon;\nexport const Journal: Icon;\nexport const Journals: Icon;\nexport const Joystick: Icon;\nexport const JustifyLeft: Icon;\nexport const JustifyRight: Icon;\nexport const Justify: Icon;\nexport const KanbanFill: Icon;\nexport const Kanban: Icon;\nexport const KeyFill: Icon;\nexport const Key: Icon;\nexport const KeyboardFill: Icon;\nexport const Keyboard: Icon;\nexport const Ladder: Icon;\nexport const LampFill: Icon;\nexport const Lamp: Icon;\nexport const LaptopFill: Icon;\nexport const Laptop: Icon;\nexport const LayerBackward: Icon;\nexport const LayerForward: Icon;\nexport const LayersFill: Icon;\nexport const LayersHalf: Icon;\nexport const Layers: Icon;\nexport const LayoutSidebarInsetReverse: Icon;\nexport const LayoutSidebarInset: Icon;\nexport const LayoutSidebarReverse: Icon;\nexport const LayoutSidebar: Icon;\nexport const LayoutSplit: Icon;\nexport const LayoutTextSidebarReverse: Icon;\nexport const LayoutTextSidebar: Icon;\nexport const LayoutTextWindowReverse: Icon;\nexport const LayoutTextWindow: Icon;\nexport const LayoutThreeColumns: Icon;\nexport const LayoutWtf: Icon;\nexport const LeafFill: Icon;\nexport const Leaf: Icon;\nexport const LifePreserver: Icon;\nexport const LightbulbFill: Icon;\nexport const LightbulbOffFill: Icon;\nexport const LightbulbOff: Icon;\nexport const Lightbulb: Icon;\nexport const LightningChargeFill: Icon;\nexport const LightningCharge: Icon;\nexport const LightningFill: Icon;\nexport const Lightning: Icon;\nexport const Line: Icon;\nexport const Link45deg: Icon;\nexport const Link: Icon;\nexport const Linkedin: Icon;\nexport const ListCheck: Icon;\nexport const ListColumnsReverse: Icon;\nexport const ListColumns: Icon;\nexport const ListNested: Icon;\nexport const ListOl: Icon;\nexport const ListStars: Icon;\nexport const ListTask: Icon;\nexport const ListUl: Icon;\nexport const List: Icon;\nexport const LockFill: Icon;\nexport const Lock: Icon;\nexport const LuggageFill: Icon;\nexport const Luggage: Icon;\nexport const LungsFill: Icon;\nexport const Lungs: Icon;\nexport const Magic: Icon;\nexport const MagnetFill: Icon;\nexport const Magnet: Icon;\nexport const MailboxFlag: Icon;\nexport const Mailbox: Icon;\nexport const Mailbox2Flag: Icon;\nexport const Mailbox2: Icon;\nexport const MapFill: Icon;\nexport const Map: Icon;\nexport const MarkdownFill: Icon;\nexport const Markdown: Icon;\nexport const MarkerTip: Icon;\nexport const Mask: Icon;\nexport const Mastodon: Icon;\nexport const MeasuringCupFill: Icon;\nexport const MeasuringCup: Icon;\nexport const Medium: Icon;\nexport const MegaphoneFill: Icon;\nexport const Megaphone: Icon;\nexport const Memory: Icon;\nexport const MenuAppFill: Icon;\nexport const MenuApp: Icon;\nexport const MenuButtonFill: Icon;\nexport const MenuButtonWideFill: Icon;\nexport const MenuButtonWide: Icon;\nexport const MenuButton: Icon;\nexport const MenuDown: Icon;\nexport const MenuUp: Icon;\nexport const Messenger: Icon;\nexport const Meta: Icon;\nexport const MicFill: Icon;\nexport const MicMuteFill: Icon;\nexport const MicMute: Icon;\nexport const Mic: Icon;\nexport const MicrosoftTeams: Icon;\nexport const Microsoft: Icon;\nexport const MinecartLoaded: Icon;\nexport const Minecart: Icon;\nexport const ModemFill: Icon;\nexport const Modem: Icon;\nexport const Moisture: Icon;\nexport const MoonFill: Icon;\nexport const MoonStarsFill: Icon;\nexport const MoonStars: Icon;\nexport const Moon: Icon;\nexport const MortarboardFill: Icon;\nexport const Mortarboard: Icon;\nexport const MotherboardFill: Icon;\nexport const Motherboard: Icon;\nexport const MouseFill: Icon;\nexport const Mouse: Icon;\nexport const Mouse2Fill: Icon;\nexport const Mouse2: Icon;\nexport const Mouse3Fill: Icon;\nexport const Mouse3: Icon;\nexport const MusicNoteBeamed: Icon;\nexport const MusicNoteList: Icon;\nexport const MusicNote: Icon;\nexport const MusicPlayerFill: Icon;\nexport const MusicPlayer: Icon;\nexport const Newspaper: Icon;\nexport const NintendoSwitch: Icon;\nexport const NodeMinusFill: Icon;\nexport const NodeMinus: Icon;\nexport const NodePlusFill: Icon;\nexport const NodePlus: Icon;\nexport const NoiseReduction: Icon;\nexport const NutFill: Icon;\nexport const Nut: Icon;\nexport const Nvidia: Icon;\nexport const NvmeFill: Icon;\nexport const Nvme: Icon;\nexport const OctagonFill: Icon;\nexport const OctagonHalf: Icon;\nexport const Octagon: Icon;\nexport const Openai: Icon;\nexport const Opencollective: Icon;\nexport const OpticalAudioFill: Icon;\nexport const OpticalAudio: Icon;\nexport const Option: Icon;\nexport const Outlet: Icon;\nexport const PCircleFill: Icon;\nexport const PCircle: Icon;\nexport const PSquareFill: Icon;\nexport const PSquare: Icon;\nexport const PaintBucket: Icon;\nexport const PaletteFill: Icon;\nexport const Palette: Icon;\nexport const Palette2: Icon;\nexport const Paperclip: Icon;\nexport const Paragraph: Icon;\nexport const PassFill: Icon;\nexport const Pass: Icon;\nexport const PassportFill: Icon;\nexport const Passport: Icon;\nexport const PatchCheckFill: Icon;\nexport const PatchCheck: Icon;\nexport const PatchExclamationFill: Icon;\nexport const PatchExclamation: Icon;\nexport const PatchMinusFill: Icon;\nexport const PatchMinus: Icon;\nexport const PatchPlusFill: Icon;\nexport const PatchPlus: Icon;\nexport const PatchQuestionFill: Icon;\nexport const PatchQuestion: Icon;\nexport const PauseBtnFill: Icon;\nexport const PauseBtn: Icon;\nexport const PauseCircleFill: Icon;\nexport const PauseCircle: Icon;\nexport const PauseFill: Icon;\nexport const Pause: Icon;\nexport const Paypal: Icon;\nexport const PcDisplayHorizontal: Icon;\nexport const PcDisplay: Icon;\nexport const PcHorizontal: Icon;\nexport const Pc: Icon;\nexport const PciCardNetwork: Icon;\nexport const PciCardSound: Icon;\nexport const PciCard: Icon;\nexport const PeaceFill: Icon;\nexport const Peace: Icon;\nexport const PenFill: Icon;\nexport const Pen: Icon;\nexport const PencilFill: Icon;\nexport const PencilSquare: Icon;\nexport const Pencil: Icon;\nexport const PentagonFill: Icon;\nexport const PentagonHalf: Icon;\nexport const Pentagon: Icon;\nexport const PeopleFill: Icon;\nexport const People: Icon;\nexport const Percent: Icon;\nexport const Perplexity: Icon;\nexport const PersonAdd: Icon;\nexport const PersonArmsUp: Icon;\nexport const PersonBadgeFill: Icon;\nexport const PersonBadge: Icon;\nexport const PersonBoundingBox: Icon;\nexport const PersonCheckFill: Icon;\nexport const PersonCheck: Icon;\nexport const PersonCircle: Icon;\nexport const PersonDashFill: Icon;\nexport const PersonDash: Icon;\nexport const PersonDown: Icon;\nexport const PersonExclamation: Icon;\nexport const PersonFillAdd: Icon;\nexport const PersonFillCheck: Icon;\nexport const PersonFillDash: Icon;\nexport const PersonFillDown: Icon;\nexport const PersonFillExclamation: Icon;\nexport const PersonFillGear: Icon;\nexport const PersonFillLock: Icon;\nexport const PersonFillSlash: Icon;\nexport const PersonFillUp: Icon;\nexport const PersonFillX: Icon;\nexport const PersonFill: Icon;\nexport const PersonGear: Icon;\nexport const PersonHeart: Icon;\nexport const PersonHearts: Icon;\nexport const PersonLinesFill: Icon;\nexport const PersonLock: Icon;\nexport const PersonPlusFill: Icon;\nexport const PersonPlus: Icon;\nexport const PersonRaisedHand: Icon;\nexport const PersonRolodex: Icon;\nexport const PersonSlash: Icon;\nexport const PersonSquare: Icon;\nexport const PersonStandingDress: Icon;\nexport const PersonStanding: Icon;\nexport const PersonUp: Icon;\nexport const PersonVcardFill: Icon;\nexport const PersonVcard: Icon;\nexport const PersonVideo: Icon;\nexport const PersonVideo2: Icon;\nexport const PersonVideo3: Icon;\nexport const PersonWalking: Icon;\nexport const PersonWheelchair: Icon;\nexport const PersonWorkspace: Icon;\nexport const PersonXFill: Icon;\nexport const PersonX: Icon;\nexport const Person: Icon;\nexport const PhoneFill: Icon;\nexport const PhoneFlip: Icon;\nexport const PhoneLandscapeFill: Icon;\nexport const PhoneLandscape: Icon;\nexport const PhoneVibrateFill: Icon;\nexport const PhoneVibrate: Icon;\nexport const Phone: Icon;\nexport const PieChartFill: Icon;\nexport const PieChart: Icon;\nexport const PiggyBankFill: Icon;\nexport const PiggyBank: Icon;\nexport const PinAngleFill: Icon;\nexport const PinAngle: Icon;\nexport const PinFill: Icon;\nexport const PinMapFill: Icon;\nexport const PinMap: Icon;\nexport const Pin: Icon;\nexport const Pinterest: Icon;\nexport const PipFill: Icon;\nexport const Pip: Icon;\nexport const PlayBtnFill: Icon;\nexport const PlayBtn: Icon;\nexport const PlayCircleFill: Icon;\nexport const PlayCircle: Icon;\nexport const PlayFill: Icon;\nexport const Play: Icon;\nexport const Playstation: Icon;\nexport const PlugFill: Icon;\nexport const Plug: Icon;\nexport const Plugin: Icon;\nexport const PlusCircleDotted: Icon;\nexport const PlusCircleFill: Icon;\nexport const PlusCircle: Icon;\nexport const PlusLg: Icon;\nexport const PlusSlashMinus: Icon;\nexport const PlusSquareDotted: Icon;\nexport const PlusSquareFill: Icon;\nexport const PlusSquare: Icon;\nexport const Plus: Icon;\nexport const PostageFill: Icon;\nexport const PostageHeartFill: Icon;\nexport const PostageHeart: Icon;\nexport const Postage: Icon;\nexport const PostcardFill: Icon;\nexport const PostcardHeartFill: Icon;\nexport const PostcardHeart: Icon;\nexport const Postcard: Icon;\nexport const Power: Icon;\nexport const Prescription: Icon;\nexport const Prescription2: Icon;\nexport const PrinterFill: Icon;\nexport const Printer: Icon;\nexport const ProjectorFill: Icon;\nexport const Projector: Icon;\nexport const PuzzleFill: Icon;\nexport const Puzzle: Icon;\nexport const QrCodeScan: Icon;\nexport const QrCode: Icon;\nexport const QuestionCircleFill: Icon;\nexport const QuestionCircle: Icon;\nexport const QuestionDiamondFill: Icon;\nexport const QuestionDiamond: Icon;\nexport const QuestionLg: Icon;\nexport const QuestionOctagonFill: Icon;\nexport const QuestionOctagon: Icon;\nexport const QuestionSquareFill: Icon;\nexport const QuestionSquare: Icon;\nexport const Question: Icon;\nexport const Quora: Icon;\nexport const Quote: Icon;\nexport const RCircleFill: Icon;\nexport const RCircle: Icon;\nexport const RSquareFill: Icon;\nexport const RSquare: Icon;\nexport const Radar: Icon;\nexport const Radioactive: Icon;\nexport const Rainbow: Icon;\nexport const ReceiptCutoff: Icon;\nexport const Receipt: Icon;\nexport const Reception0: Icon;\nexport const Reception1: Icon;\nexport const Reception2: Icon;\nexport const Reception3: Icon;\nexport const Reception4: Icon;\nexport const RecordBtnFill: Icon;\nexport const RecordBtn: Icon;\nexport const RecordCircleFill: Icon;\nexport const RecordCircle: Icon;\nexport const RecordFill: Icon;\nexport const Record: Icon;\nexport const Record2Fill: Icon;\nexport const Record2: Icon;\nexport const Recycle: Icon;\nexport const Reddit: Icon;\nexport const Regex: Icon;\nexport const Repeat1: Icon;\nexport const Repeat: Icon;\nexport const ReplyAllFill: Icon;\nexport const ReplyAll: Icon;\nexport const ReplyFill: Icon;\nexport const Reply: Icon;\nexport const RewindBtnFill: Icon;\nexport const RewindBtn: Icon;\nexport const RewindCircleFill: Icon;\nexport const RewindCircle: Icon;\nexport const RewindFill: Icon;\nexport const Rewind: Icon;\nexport const Robot: Icon;\nexport const RocketFill: Icon;\nexport const RocketTakeoffFill: Icon;\nexport const RocketTakeoff: Icon;\nexport const Rocket: Icon;\nexport const RouterFill: Icon;\nexport const Router: Icon;\nexport const RssFill: Icon;\nexport const Rss: Icon;\nexport const Rulers: Icon;\nexport const SafeFill: Icon;\nexport const Safe: Icon;\nexport const Safe2Fill: Icon;\nexport const Safe2: Icon;\nexport const SaveFill: Icon;\nexport const Save: Icon;\nexport const Save2Fill: Icon;\nexport const Save2: Icon;\nexport const Scissors: Icon;\nexport const Scooter: Icon;\nexport const Screwdriver: Icon;\nexport const SdCardFill: Icon;\nexport const SdCard: Icon;\nexport const SearchHeartFill: Icon;\nexport const SearchHeart: Icon;\nexport const Search: Icon;\nexport const SegmentedNav: Icon;\nexport const SendArrowDownFill: Icon;\nexport const SendArrowDown: Icon;\nexport const SendArrowUpFill: Icon;\nexport const SendArrowUp: Icon;\nexport const SendCheckFill: Icon;\nexport const SendCheck: Icon;\nexport const SendDashFill: Icon;\nexport const SendDash: Icon;\nexport const SendExclamationFill: Icon;\nexport const SendExclamation: Icon;\nexport const SendFill: Icon;\nexport const SendPlusFill: Icon;\nexport const SendPlus: Icon;\nexport const SendSlashFill: Icon;\nexport const SendSlash: Icon;\nexport const SendXFill: Icon;\nexport const SendX: Icon;\nexport const Send: Icon;\nexport const Server: Icon;\nexport const Shadows: Icon;\nexport const ShareFill: Icon;\nexport const Share: Icon;\nexport const ShieldCheck: Icon;\nexport const ShieldExclamation: Icon;\nexport const ShieldFillCheck: Icon;\nexport const ShieldFillExclamation: Icon;\nexport const ShieldFillMinus: Icon;\nexport const ShieldFillPlus: Icon;\nexport const ShieldFillX: Icon;\nexport const ShieldFill: Icon;\nexport const ShieldLockFill: Icon;\nexport const ShieldLock: Icon;\nexport const ShieldMinus: Icon;\nexport const ShieldPlus: Icon;\nexport const ShieldShaded: Icon;\nexport const ShieldSlashFill: Icon;\nexport const ShieldSlash: Icon;\nexport const ShieldX: Icon;\nexport const Shield: Icon;\nexport const ShiftFill: Icon;\nexport const Shift: Icon;\nexport const ShopWindow: Icon;\nexport const Shop: Icon;\nexport const Shuffle: Icon;\nexport const SignDeadEndFill: Icon;\nexport const SignDeadEnd: Icon;\nexport const SignDoNotEnterFill: Icon;\nexport const SignDoNotEnter: Icon;\nexport const SignIntersectionFill: Icon;\nexport const SignIntersectionSideFill: Icon;\nexport const SignIntersectionSide: Icon;\nexport const SignIntersectionTFill: Icon;\nexport const SignIntersectionT: Icon;\nexport const SignIntersectionYFill: Icon;\nexport const SignIntersectionY: Icon;\nexport const SignIntersection: Icon;\nexport const SignMergeLeftFill: Icon;\nexport const SignMergeLeft: Icon;\nexport const SignMergeRightFill: Icon;\nexport const SignMergeRight: Icon;\nexport const SignNoLeftTurnFill: Icon;\nexport const SignNoLeftTurn: Icon;\nexport const SignNoParkingFill: Icon;\nexport const SignNoParking: Icon;\nexport const SignNoRightTurnFill: Icon;\nexport const SignNoRightTurn: Icon;\nexport const SignRailroadFill: Icon;\nexport const SignRailroad: Icon;\nexport const SignStopFill: Icon;\nexport const SignStopLightsFill: Icon;\nexport const SignStopLights: Icon;\nexport const SignStop: Icon;\nexport const SignTurnLeftFill: Icon;\nexport const SignTurnLeft: Icon;\nexport const SignTurnRightFill: Icon;\nexport const SignTurnRight: Icon;\nexport const SignTurnSlightLeftFill: Icon;\nexport const SignTurnSlightLeft: Icon;\nexport const SignTurnSlightRightFill: Icon;\nexport const SignTurnSlightRight: Icon;\nexport const SignYieldFill: Icon;\nexport const SignYield: Icon;\nexport const Signal: Icon;\nexport const Signpost2Fill: Icon;\nexport const Signpost2: Icon;\nexport const SignpostFill: Icon;\nexport const SignpostSplitFill: Icon;\nexport const SignpostSplit: Icon;\nexport const Signpost: Icon;\nexport const SimFill: Icon;\nexport const SimSlashFill: Icon;\nexport const SimSlash: Icon;\nexport const Sim: Icon;\nexport const SinaWeibo: Icon;\nexport const SkipBackwardBtnFill: Icon;\nexport const SkipBackwardBtn: Icon;\nexport const SkipBackwardCircleFill: Icon;\nexport const SkipBackwardCircle: Icon;\nexport const SkipBackwardFill: Icon;\nexport const SkipBackward: Icon;\nexport const SkipEndBtnFill: Icon;\nexport const SkipEndBtn: Icon;\nexport const SkipEndCircleFill: Icon;\nexport const SkipEndCircle: Icon;\nexport const SkipEndFill: Icon;\nexport const SkipEnd: Icon;\nexport const SkipForwardBtnFill: Icon;\nexport const SkipForwardBtn: Icon;\nexport const SkipForwardCircleFill: Icon;\nexport const SkipForwardCircle: Icon;\nexport const SkipForwardFill: Icon;\nexport const SkipForward: Icon;\nexport const SkipStartBtnFill: Icon;\nexport const SkipStartBtn: Icon;\nexport const SkipStartCircleFill: Icon;\nexport const SkipStartCircle: Icon;\nexport const SkipStartFill: Icon;\nexport const SkipStart: Icon;\nexport const Skype: Icon;\nexport const Slack: Icon;\nexport const SlashCircleFill: Icon;\nexport const SlashCircle: Icon;\nexport const SlashLg: Icon;\nexport const SlashSquareFill: Icon;\nexport const SlashSquare: Icon;\nexport const Slash: Icon;\nexport const Sliders: Icon;\nexport const Sliders2Vertical: Icon;\nexport const Sliders2: Icon;\nexport const Smartwatch: Icon;\nexport const Snapchat: Icon;\nexport const Snow: Icon;\nexport const Snow2: Icon;\nexport const Snow3: Icon;\nexport const SortAlphaDownAlt: Icon;\nexport const SortAlphaDown: Icon;\nexport const SortAlphaUpAlt: Icon;\nexport const SortAlphaUp: Icon;\nexport const SortDownAlt: Icon;\nexport const SortDown: Icon;\nexport const SortNumericDownAlt: Icon;\nexport const SortNumericDown: Icon;\nexport const SortNumericUpAlt: Icon;\nexport const SortNumericUp: Icon;\nexport const SortUpAlt: Icon;\nexport const SortUp: Icon;\nexport const Soundwave: Icon;\nexport const Sourceforge: Icon;\nexport const SpeakerFill: Icon;\nexport const Speaker: Icon;\nexport const Speedometer: Icon;\nexport const Speedometer2: Icon;\nexport const Spellcheck: Icon;\nexport const Spotify: Icon;\nexport const SquareFill: Icon;\nexport const SquareHalf: Icon;\nexport const Square: Icon;\nexport const StackOverflow: Icon;\nexport const Stack: Icon;\nexport const StarFill: Icon;\nexport const StarHalf: Icon;\nexport const Star: Icon;\nexport const Stars: Icon;\nexport const Steam: Icon;\nexport const StickiesFill: Icon;\nexport const Stickies: Icon;\nexport const StickyFill: Icon;\nexport const Sticky: Icon;\nexport const StopBtnFill: Icon;\nexport const StopBtn: Icon;\nexport const StopCircleFill: Icon;\nexport const StopCircle: Icon;\nexport const StopFill: Icon;\nexport const Stop: Icon;\nexport const StoplightsFill: Icon;\nexport const Stoplights: Icon;\nexport const StopwatchFill: Icon;\nexport const Stopwatch: Icon;\nexport const Strava: Icon;\nexport const Stripe: Icon;\nexport const Subscript: Icon;\nexport const Substack: Icon;\nexport const Subtract: Icon;\nexport const SuitClubFill: Icon;\nexport const SuitClub: Icon;\nexport const SuitDiamondFill: Icon;\nexport const SuitDiamond: Icon;\nexport const SuitHeartFill: Icon;\nexport const SuitHeart: Icon;\nexport const SuitSpadeFill: Icon;\nexport const SuitSpade: Icon;\nexport const SuitcaseFill: Icon;\nexport const SuitcaseLgFill: Icon;\nexport const SuitcaseLg: Icon;\nexport const Suitcase: Icon;\nexport const Suitcase2Fill: Icon;\nexport const Suitcase2: Icon;\nexport const SunFill: Icon;\nexport const Sun: Icon;\nexport const Sunglasses: Icon;\nexport const SunriseFill: Icon;\nexport const Sunrise: Icon;\nexport const SunsetFill: Icon;\nexport const Sunset: Icon;\nexport const Superscript: Icon;\nexport const SymmetryHorizontal: Icon;\nexport const SymmetryVertical: Icon;\nexport const Table: Icon;\nexport const TabletFill: Icon;\nexport const TabletLandscapeFill: Icon;\nexport const TabletLandscape: Icon;\nexport const Tablet: Icon;\nexport const TagFill: Icon;\nexport const Tag: Icon;\nexport const TagsFill: Icon;\nexport const Tags: Icon;\nexport const TaxiFrontFill: Icon;\nexport const TaxiFront: Icon;\nexport const Telegram: Icon;\nexport const TelephoneFill: Icon;\nexport const TelephoneForwardFill: Icon;\nexport const TelephoneForward: Icon;\nexport const TelephoneInboundFill: Icon;\nexport const TelephoneInbound: Icon;\nexport const TelephoneMinusFill: Icon;\nexport const TelephoneMinus: Icon;\nexport const TelephoneOutboundFill: Icon;\nexport const TelephoneOutbound: Icon;\nexport const TelephonePlusFill: Icon;\nexport const TelephonePlus: Icon;\nexport const TelephoneXFill: Icon;\nexport const TelephoneX: Icon;\nexport const Telephone: Icon;\nexport const TencentQq: Icon;\nexport const TerminalDash: Icon;\nexport const TerminalFill: Icon;\nexport const TerminalPlus: Icon;\nexport const TerminalSplit: Icon;\nexport const TerminalX: Icon;\nexport const Terminal: Icon;\nexport const TextCenter: Icon;\nexport const TextIndentLeft: Icon;\nexport const TextIndentRight: Icon;\nexport const TextLeft: Icon;\nexport const TextParagraph: Icon;\nexport const TextRight: Icon;\nexport const TextWrap: Icon;\nexport const TextareaResize: Icon;\nexport const TextareaT: Icon;\nexport const Textarea: Icon;\nexport const ThermometerHalf: Icon;\nexport const ThermometerHigh: Icon;\nexport const ThermometerLow: Icon;\nexport const ThermometerSnow: Icon;\nexport const ThermometerSun: Icon;\nexport const Thermometer: Icon;\nexport const ThreadsFill: Icon;\nexport const Threads: Icon;\nexport const ThreeDotsVertical: Icon;\nexport const ThreeDots: Icon;\nexport const ThunderboltFill: Icon;\nexport const Thunderbolt: Icon;\nexport const TicketDetailedFill: Icon;\nexport const TicketDetailed: Icon;\nexport const TicketFill: Icon;\nexport const TicketPerforatedFill: Icon;\nexport const TicketPerforated: Icon;\nexport const Ticket: Icon;\nexport const Tiktok: Icon;\nexport const ToggleOff: Icon;\nexport const ToggleOn: Icon;\nexport const Toggle2Off: Icon;\nexport const Toggle2On: Icon;\nexport const Toggles: Icon;\nexport const Toggles2: Icon;\nexport const Tools: Icon;\nexport const Tornado: Icon;\nexport const TrainFreightFrontFill: Icon;\nexport const TrainFreightFront: Icon;\nexport const TrainFrontFill: Icon;\nexport const TrainFront: Icon;\nexport const TrainLightrailFrontFill: Icon;\nexport const TrainLightrailFront: Icon;\nexport const Translate: Icon;\nexport const Transparency: Icon;\nexport const TrashFill: Icon;\nexport const Trash: Icon;\nexport const Trash2Fill: Icon;\nexport const Trash2: Icon;\nexport const Trash3Fill: Icon;\nexport const Trash3: Icon;\nexport const TreeFill: Icon;\nexport const Tree: Icon;\nexport const Trello: Icon;\nexport const TriangleFill: Icon;\nexport const TriangleHalf: Icon;\nexport const Triangle: Icon;\nexport const TrophyFill: Icon;\nexport const Trophy: Icon;\nexport const TropicalStorm: Icon;\nexport const TruckFlatbed: Icon;\nexport const TruckFrontFill: Icon;\nexport const TruckFront: Icon;\nexport const Truck: Icon;\nexport const Tsunami: Icon;\nexport const Tux: Icon;\nexport const TvFill: Icon;\nexport const Tv: Icon;\nexport const Twitch: Icon;\nexport const TwitterX: Icon;\nexport const Twitter: Icon;\nexport const TypeBold: Icon;\nexport const TypeH1: Icon;\nexport const TypeH2: Icon;\nexport const TypeH3: Icon;\nexport const TypeH4: Icon;\nexport const TypeH5: Icon;\nexport const TypeH6: Icon;\nexport const TypeItalic: Icon;\nexport const TypeStrikethrough: Icon;\nexport const TypeUnderline: Icon;\nexport const Type: Icon;\nexport const Typescript: Icon;\nexport const Ubuntu: Icon;\nexport const UiChecksGrid: Icon;\nexport const UiChecks: Icon;\nexport const UiRadiosGrid: Icon;\nexport const UiRadios: Icon;\nexport const UmbrellaFill: Icon;\nexport const Umbrella: Icon;\nexport const Unindent: Icon;\nexport const Union: Icon;\nexport const Unity: Icon;\nexport const UniversalAccessCircle: Icon;\nexport const UniversalAccess: Icon;\nexport const UnlockFill: Icon;\nexport const Unlock: Icon;\nexport const Unlock2Fill: Icon;\nexport const Unlock2: Icon;\nexport const UpcScan: Icon;\nexport const Upc: Icon;\nexport const Upload: Icon;\nexport const UsbCFill: Icon;\nexport const UsbC: Icon;\nexport const UsbDriveFill: Icon;\nexport const UsbDrive: Icon;\nexport const UsbFill: Icon;\nexport const UsbMicroFill: Icon;\nexport const UsbMicro: Icon;\nexport const UsbMiniFill: Icon;\nexport const UsbMini: Icon;\nexport const UsbPlugFill: Icon;\nexport const UsbPlug: Icon;\nexport const UsbSymbol: Icon;\nexport const Usb: Icon;\nexport const Valentine: Icon;\nexport const Valentine2: Icon;\nexport const VectorPen: Icon;\nexport const ViewList: Icon;\nexport const ViewStacked: Icon;\nexport const Vignette: Icon;\nexport const Vimeo: Icon;\nexport const VinylFill: Icon;\nexport const Vinyl: Icon;\nexport const Virus: Icon;\nexport const Virus2: Icon;\nexport const Voicemail: Icon;\nexport const VolumeDownFill: Icon;\nexport const VolumeDown: Icon;\nexport const VolumeMuteFill: Icon;\nexport const VolumeMute: Icon;\nexport const VolumeOffFill: Icon;\nexport const VolumeOff: Icon;\nexport const VolumeUpFill: Icon;\nexport const VolumeUp: Icon;\nexport const Vr: Icon;\nexport const WalletFill: Icon;\nexport const Wallet: Icon;\nexport const Wallet2: Icon;\nexport const Watch: Icon;\nexport const Water: Icon;\nexport const WebcamFill: Icon;\nexport const Webcam: Icon;\nexport const Wechat: Icon;\nexport const Whatsapp: Icon;\nexport const Wifi1: Icon;\nexport const Wifi2: Icon;\nexport const WifiOff: Icon;\nexport const Wifi: Icon;\nexport const Wikipedia: Icon;\nexport const Wind: Icon;\nexport const WindowDash: Icon;\nexport const WindowDesktop: Icon;\nexport const WindowDock: Icon;\nexport const WindowFullscreen: Icon;\nexport const WindowPlus: Icon;\nexport const WindowSidebar: Icon;\nexport const WindowSplit: Icon;\nexport const WindowStack: Icon;\nexport const WindowX: Icon;\nexport const Window: Icon;\nexport const Windows: Icon;\nexport const Wordpress: Icon;\nexport const WrenchAdjustableCircleFill: Icon;\nexport const WrenchAdjustableCircle: Icon;\nexport const WrenchAdjustable: Icon;\nexport const Wrench: Icon;\nexport const XCircleFill: Icon;\nexport const XCircle: Icon;\nexport const XDiamondFill: Icon;\nexport const XDiamond: Icon;\nexport const XLg: Icon;\nexport const XOctagonFill: Icon;\nexport const XOctagon: Icon;\nexport const XSquareFill: Icon;\nexport const XSquare: Icon;\nexport const X: Icon;\nexport const Xbox: Icon;\nexport const Yelp: Icon;\nexport const YinYang: Icon;\nexport const Youtube: Icon;\nexport const ZoomIn: Icon;\nexport const ZoomOut: Icon;\n"
  },
  {
    "path": "src/index.js",
    "content": "export { default as Icon0CircleFill } from './icons/0-circle-fill';\r\nexport { default as Icon0Circle } from './icons/0-circle';\r\nexport { default as Icon0SquareFill } from './icons/0-square-fill';\r\nexport { default as Icon0Square } from './icons/0-square';\r\nexport { default as Icon1CircleFill } from './icons/1-circle-fill';\r\nexport { default as Icon1Circle } from './icons/1-circle';\r\nexport { default as Icon1SquareFill } from './icons/1-square-fill';\r\nexport { default as Icon1Square } from './icons/1-square';\r\nexport { default as Icon123 } from './icons/123';\r\nexport { default as Icon2CircleFill } from './icons/2-circle-fill';\r\nexport { default as Icon2Circle } from './icons/2-circle';\r\nexport { default as Icon2SquareFill } from './icons/2-square-fill';\r\nexport { default as Icon2Square } from './icons/2-square';\r\nexport { default as Icon3CircleFill } from './icons/3-circle-fill';\r\nexport { default as Icon3Circle } from './icons/3-circle';\r\nexport { default as Icon3SquareFill } from './icons/3-square-fill';\r\nexport { default as Icon3Square } from './icons/3-square';\r\nexport { default as Icon4CircleFill } from './icons/4-circle-fill';\r\nexport { default as Icon4Circle } from './icons/4-circle';\r\nexport { default as Icon4SquareFill } from './icons/4-square-fill';\r\nexport { default as Icon4Square } from './icons/4-square';\r\nexport { default as Icon5CircleFill } from './icons/5-circle-fill';\r\nexport { default as Icon5Circle } from './icons/5-circle';\r\nexport { default as Icon5SquareFill } from './icons/5-square-fill';\r\nexport { default as Icon5Square } from './icons/5-square';\r\nexport { default as Icon6CircleFill } from './icons/6-circle-fill';\r\nexport { default as Icon6Circle } from './icons/6-circle';\r\nexport { default as Icon6SquareFill } from './icons/6-square-fill';\r\nexport { default as Icon6Square } from './icons/6-square';\r\nexport { default as Icon7CircleFill } from './icons/7-circle-fill';\r\nexport { default as Icon7Circle } from './icons/7-circle';\r\nexport { default as Icon7SquareFill } from './icons/7-square-fill';\r\nexport { default as Icon7Square } from './icons/7-square';\r\nexport { default as Icon8CircleFill } from './icons/8-circle-fill';\r\nexport { default as Icon8Circle } from './icons/8-circle';\r\nexport { default as Icon8SquareFill } from './icons/8-square-fill';\r\nexport { default as Icon8Square } from './icons/8-square';\r\nexport { default as Icon9CircleFill } from './icons/9-circle-fill';\r\nexport { default as Icon9Circle } from './icons/9-circle';\r\nexport { default as Icon9SquareFill } from './icons/9-square-fill';\r\nexport { default as Icon9Square } from './icons/9-square';\r\nexport { default as Activity } from './icons/activity';\r\nexport { default as AirplaneEnginesFill } from './icons/airplane-engines-fill';\r\nexport { default as AirplaneEngines } from './icons/airplane-engines';\r\nexport { default as AirplaneFill } from './icons/airplane-fill';\r\nexport { default as Airplane } from './icons/airplane';\r\nexport { default as AlarmFill } from './icons/alarm-fill';\r\nexport { default as Alarm } from './icons/alarm';\r\nexport { default as Alexa } from './icons/alexa';\r\nexport { default as AlignBottom } from './icons/align-bottom';\r\nexport { default as AlignCenter } from './icons/align-center';\r\nexport { default as AlignEnd } from './icons/align-end';\r\nexport { default as AlignMiddle } from './icons/align-middle';\r\nexport { default as AlignStart } from './icons/align-start';\r\nexport { default as AlignTop } from './icons/align-top';\r\nexport { default as Alipay } from './icons/alipay';\r\nexport { default as AlphabetUppercase } from './icons/alphabet-uppercase';\r\nexport { default as Alphabet } from './icons/alphabet';\r\nexport { default as Alt } from './icons/alt';\r\nexport { default as Amazon } from './icons/amazon';\r\nexport { default as Amd } from './icons/amd';\r\nexport { default as Android } from './icons/android';\r\nexport { default as Android2 } from './icons/android2';\r\nexport { default as Anthropic } from './icons/anthropic';\r\nexport { default as AppIndicator } from './icons/app-indicator';\r\nexport { default as App } from './icons/app';\r\nexport { default as AppleMusic } from './icons/apple-music';\r\nexport { default as Apple } from './icons/apple';\r\nexport { default as ArchiveFill } from './icons/archive-fill';\r\nexport { default as Archive } from './icons/archive';\r\nexport { default as Arrow90degDown } from './icons/arrow-90deg-down';\r\nexport { default as Arrow90degLeft } from './icons/arrow-90deg-left';\r\nexport { default as Arrow90degRight } from './icons/arrow-90deg-right';\r\nexport { default as Arrow90degUp } from './icons/arrow-90deg-up';\r\nexport { default as ArrowBarDown } from './icons/arrow-bar-down';\r\nexport { default as ArrowBarLeft } from './icons/arrow-bar-left';\r\nexport { default as ArrowBarRight } from './icons/arrow-bar-right';\r\nexport { default as ArrowBarUp } from './icons/arrow-bar-up';\r\nexport { default as ArrowClockwise } from './icons/arrow-clockwise';\r\nexport { default as ArrowCounterclockwise } from './icons/arrow-counterclockwise';\r\nexport { default as ArrowDownCircleFill } from './icons/arrow-down-circle-fill';\r\nexport { default as ArrowDownCircle } from './icons/arrow-down-circle';\r\nexport { default as ArrowDownLeftCircleFill } from './icons/arrow-down-left-circle-fill';\r\nexport { default as ArrowDownLeftCircle } from './icons/arrow-down-left-circle';\r\nexport { default as ArrowDownLeftSquareFill } from './icons/arrow-down-left-square-fill';\r\nexport { default as ArrowDownLeftSquare } from './icons/arrow-down-left-square';\r\nexport { default as ArrowDownLeft } from './icons/arrow-down-left';\r\nexport { default as ArrowDownRightCircleFill } from './icons/arrow-down-right-circle-fill';\r\nexport { default as ArrowDownRightCircle } from './icons/arrow-down-right-circle';\r\nexport { default as ArrowDownRightSquareFill } from './icons/arrow-down-right-square-fill';\r\nexport { default as ArrowDownRightSquare } from './icons/arrow-down-right-square';\r\nexport { default as ArrowDownRight } from './icons/arrow-down-right';\r\nexport { default as ArrowDownShort } from './icons/arrow-down-short';\r\nexport { default as ArrowDownSquareFill } from './icons/arrow-down-square-fill';\r\nexport { default as ArrowDownSquare } from './icons/arrow-down-square';\r\nexport { default as ArrowDownUp } from './icons/arrow-down-up';\r\nexport { default as ArrowDown } from './icons/arrow-down';\r\nexport { default as ArrowLeftCircleFill } from './icons/arrow-left-circle-fill';\r\nexport { default as ArrowLeftCircle } from './icons/arrow-left-circle';\r\nexport { default as ArrowLeftRight } from './icons/arrow-left-right';\r\nexport { default as ArrowLeftShort } from './icons/arrow-left-short';\r\nexport { default as ArrowLeftSquareFill } from './icons/arrow-left-square-fill';\r\nexport { default as ArrowLeftSquare } from './icons/arrow-left-square';\r\nexport { default as ArrowLeft } from './icons/arrow-left';\r\nexport { default as ArrowRepeat } from './icons/arrow-repeat';\r\nexport { default as ArrowReturnLeft } from './icons/arrow-return-left';\r\nexport { default as ArrowReturnRight } from './icons/arrow-return-right';\r\nexport { default as ArrowRightCircleFill } from './icons/arrow-right-circle-fill';\r\nexport { default as ArrowRightCircle } from './icons/arrow-right-circle';\r\nexport { default as ArrowRightShort } from './icons/arrow-right-short';\r\nexport { default as ArrowRightSquareFill } from './icons/arrow-right-square-fill';\r\nexport { default as ArrowRightSquare } from './icons/arrow-right-square';\r\nexport { default as ArrowRight } from './icons/arrow-right';\r\nexport { default as ArrowThroughHeartFill } from './icons/arrow-through-heart-fill';\r\nexport { default as ArrowThroughHeart } from './icons/arrow-through-heart';\r\nexport { default as ArrowUpCircleFill } from './icons/arrow-up-circle-fill';\r\nexport { default as ArrowUpCircle } from './icons/arrow-up-circle';\r\nexport { default as ArrowUpLeftCircleFill } from './icons/arrow-up-left-circle-fill';\r\nexport { default as ArrowUpLeftCircle } from './icons/arrow-up-left-circle';\r\nexport { default as ArrowUpLeftSquareFill } from './icons/arrow-up-left-square-fill';\r\nexport { default as ArrowUpLeftSquare } from './icons/arrow-up-left-square';\r\nexport { default as ArrowUpLeft } from './icons/arrow-up-left';\r\nexport { default as ArrowUpRightCircleFill } from './icons/arrow-up-right-circle-fill';\r\nexport { default as ArrowUpRightCircle } from './icons/arrow-up-right-circle';\r\nexport { default as ArrowUpRightSquareFill } from './icons/arrow-up-right-square-fill';\r\nexport { default as ArrowUpRightSquare } from './icons/arrow-up-right-square';\r\nexport { default as ArrowUpRight } from './icons/arrow-up-right';\r\nexport { default as ArrowUpShort } from './icons/arrow-up-short';\r\nexport { default as ArrowUpSquareFill } from './icons/arrow-up-square-fill';\r\nexport { default as ArrowUpSquare } from './icons/arrow-up-square';\r\nexport { default as ArrowUp } from './icons/arrow-up';\r\nexport { default as ArrowsAngleContract } from './icons/arrows-angle-contract';\r\nexport { default as ArrowsAngleExpand } from './icons/arrows-angle-expand';\r\nexport { default as ArrowsCollapseVertical } from './icons/arrows-collapse-vertical';\r\nexport { default as ArrowsCollapse } from './icons/arrows-collapse';\r\nexport { default as ArrowsExpandVertical } from './icons/arrows-expand-vertical';\r\nexport { default as ArrowsExpand } from './icons/arrows-expand';\r\nexport { default as ArrowsFullscreen } from './icons/arrows-fullscreen';\r\nexport { default as ArrowsMove } from './icons/arrows-move';\r\nexport { default as ArrowsVertical } from './icons/arrows-vertical';\r\nexport { default as Arrows } from './icons/arrows';\r\nexport { default as AspectRatioFill } from './icons/aspect-ratio-fill';\r\nexport { default as AspectRatio } from './icons/aspect-ratio';\r\nexport { default as Asterisk } from './icons/asterisk';\r\nexport { default as At } from './icons/at';\r\nexport { default as AwardFill } from './icons/award-fill';\r\nexport { default as Award } from './icons/award';\r\nexport { default as Back } from './icons/back';\r\nexport { default as BackpackFill } from './icons/backpack-fill';\r\nexport { default as Backpack } from './icons/backpack';\r\nexport { default as Backpack2Fill } from './icons/backpack2-fill';\r\nexport { default as Backpack2 } from './icons/backpack2';\r\nexport { default as Backpack3Fill } from './icons/backpack3-fill';\r\nexport { default as Backpack3 } from './icons/backpack3';\r\nexport { default as Backpack4Fill } from './icons/backpack4-fill';\r\nexport { default as Backpack4 } from './icons/backpack4';\r\nexport { default as BackspaceFill } from './icons/backspace-fill';\r\nexport { default as BackspaceReverseFill } from './icons/backspace-reverse-fill';\r\nexport { default as BackspaceReverse } from './icons/backspace-reverse';\r\nexport { default as Backspace } from './icons/backspace';\r\nexport { default as Badge3dFill } from './icons/badge-3d-fill';\r\nexport { default as Badge3d } from './icons/badge-3d';\r\nexport { default as Badge4kFill } from './icons/badge-4k-fill';\r\nexport { default as Badge4k } from './icons/badge-4k';\r\nexport { default as Badge8kFill } from './icons/badge-8k-fill';\r\nexport { default as Badge8k } from './icons/badge-8k';\r\nexport { default as BadgeAdFill } from './icons/badge-ad-fill';\r\nexport { default as BadgeAd } from './icons/badge-ad';\r\nexport { default as BadgeArFill } from './icons/badge-ar-fill';\r\nexport { default as BadgeAr } from './icons/badge-ar';\r\nexport { default as BadgeCcFill } from './icons/badge-cc-fill';\r\nexport { default as BadgeCc } from './icons/badge-cc';\r\nexport { default as BadgeHdFill } from './icons/badge-hd-fill';\r\nexport { default as BadgeHd } from './icons/badge-hd';\r\nexport { default as BadgeSdFill } from './icons/badge-sd-fill';\r\nexport { default as BadgeSd } from './icons/badge-sd';\r\nexport { default as BadgeTmFill } from './icons/badge-tm-fill';\r\nexport { default as BadgeTm } from './icons/badge-tm';\r\nexport { default as BadgeVoFill } from './icons/badge-vo-fill';\r\nexport { default as BadgeVo } from './icons/badge-vo';\r\nexport { default as BadgeVrFill } from './icons/badge-vr-fill';\r\nexport { default as BadgeVr } from './icons/badge-vr';\r\nexport { default as BadgeWcFill } from './icons/badge-wc-fill';\r\nexport { default as BadgeWc } from './icons/badge-wc';\r\nexport { default as BagCheckFill } from './icons/bag-check-fill';\r\nexport { default as BagCheck } from './icons/bag-check';\r\nexport { default as BagDashFill } from './icons/bag-dash-fill';\r\nexport { default as BagDash } from './icons/bag-dash';\r\nexport { default as BagFill } from './icons/bag-fill';\r\nexport { default as BagHeartFill } from './icons/bag-heart-fill';\r\nexport { default as BagHeart } from './icons/bag-heart';\r\nexport { default as BagPlusFill } from './icons/bag-plus-fill';\r\nexport { default as BagPlus } from './icons/bag-plus';\r\nexport { default as BagXFill } from './icons/bag-x-fill';\r\nexport { default as BagX } from './icons/bag-x';\r\nexport { default as Bag } from './icons/bag';\r\nexport { default as BalloonFill } from './icons/balloon-fill';\r\nexport { default as BalloonHeartFill } from './icons/balloon-heart-fill';\r\nexport { default as BalloonHeart } from './icons/balloon-heart';\r\nexport { default as Balloon } from './icons/balloon';\r\nexport { default as BanFill } from './icons/ban-fill';\r\nexport { default as Ban } from './icons/ban';\r\nexport { default as BandaidFill } from './icons/bandaid-fill';\r\nexport { default as Bandaid } from './icons/bandaid';\r\nexport { default as Bank } from './icons/bank';\r\nexport { default as Bank2 } from './icons/bank2';\r\nexport { default as BarChartFill } from './icons/bar-chart-fill';\r\nexport { default as BarChartLineFill } from './icons/bar-chart-line-fill';\r\nexport { default as BarChartLine } from './icons/bar-chart-line';\r\nexport { default as BarChartSteps } from './icons/bar-chart-steps';\r\nexport { default as BarChart } from './icons/bar-chart';\r\nexport { default as BasketFill } from './icons/basket-fill';\r\nexport { default as Basket } from './icons/basket';\r\nexport { default as Basket2Fill } from './icons/basket2-fill';\r\nexport { default as Basket2 } from './icons/basket2';\r\nexport { default as Basket3Fill } from './icons/basket3-fill';\r\nexport { default as Basket3 } from './icons/basket3';\r\nexport { default as BatteryCharging } from './icons/battery-charging';\r\nexport { default as BatteryFull } from './icons/battery-full';\r\nexport { default as BatteryHalf } from './icons/battery-half';\r\nexport { default as BatteryLow } from './icons/battery-low';\r\nexport { default as Battery } from './icons/battery';\r\nexport { default as BeakerFill } from './icons/beaker-fill';\r\nexport { default as Beaker } from './icons/beaker';\r\nexport { default as Behance } from './icons/behance';\r\nexport { default as BellFill } from './icons/bell-fill';\r\nexport { default as BellSlashFill } from './icons/bell-slash-fill';\r\nexport { default as BellSlash } from './icons/bell-slash';\r\nexport { default as Bell } from './icons/bell';\r\nexport { default as Bezier } from './icons/bezier';\r\nexport { default as Bezier2 } from './icons/bezier2';\r\nexport { default as Bicycle } from './icons/bicycle';\r\nexport { default as Bing } from './icons/bing';\r\nexport { default as BinocularsFill } from './icons/binoculars-fill';\r\nexport { default as Binoculars } from './icons/binoculars';\r\nexport { default as BlockquoteLeft } from './icons/blockquote-left';\r\nexport { default as BlockquoteRight } from './icons/blockquote-right';\r\nexport { default as Bluesky } from './icons/bluesky';\r\nexport { default as Bluetooth } from './icons/bluetooth';\r\nexport { default as BodyText } from './icons/body-text';\r\nexport { default as BookFill } from './icons/book-fill';\r\nexport { default as BookHalf } from './icons/book-half';\r\nexport { default as Book } from './icons/book';\r\nexport { default as BookmarkCheckFill } from './icons/bookmark-check-fill';\r\nexport { default as BookmarkCheck } from './icons/bookmark-check';\r\nexport { default as BookmarkDashFill } from './icons/bookmark-dash-fill';\r\nexport { default as BookmarkDash } from './icons/bookmark-dash';\r\nexport { default as BookmarkFill } from './icons/bookmark-fill';\r\nexport { default as BookmarkHeartFill } from './icons/bookmark-heart-fill';\r\nexport { default as BookmarkHeart } from './icons/bookmark-heart';\r\nexport { default as BookmarkPlusFill } from './icons/bookmark-plus-fill';\r\nexport { default as BookmarkPlus } from './icons/bookmark-plus';\r\nexport { default as BookmarkStarFill } from './icons/bookmark-star-fill';\r\nexport { default as BookmarkStar } from './icons/bookmark-star';\r\nexport { default as BookmarkXFill } from './icons/bookmark-x-fill';\r\nexport { default as BookmarkX } from './icons/bookmark-x';\r\nexport { default as Bookmark } from './icons/bookmark';\r\nexport { default as BookmarksFill } from './icons/bookmarks-fill';\r\nexport { default as Bookmarks } from './icons/bookmarks';\r\nexport { default as Bookshelf } from './icons/bookshelf';\r\nexport { default as BoomboxFill } from './icons/boombox-fill';\r\nexport { default as Boombox } from './icons/boombox';\r\nexport { default as BootstrapFill } from './icons/bootstrap-fill';\r\nexport { default as BootstrapReboot } from './icons/bootstrap-reboot';\r\nexport { default as Bootstrap } from './icons/bootstrap';\r\nexport { default as BorderAll } from './icons/border-all';\r\nexport { default as BorderBottom } from './icons/border-bottom';\r\nexport { default as BorderCenter } from './icons/border-center';\r\nexport { default as BorderInner } from './icons/border-inner';\r\nexport { default as BorderLeft } from './icons/border-left';\r\nexport { default as BorderMiddle } from './icons/border-middle';\r\nexport { default as BorderOuter } from './icons/border-outer';\r\nexport { default as BorderRight } from './icons/border-right';\r\nexport { default as BorderStyle } from './icons/border-style';\r\nexport { default as BorderTop } from './icons/border-top';\r\nexport { default as BorderWidth } from './icons/border-width';\r\nexport { default as Border } from './icons/border';\r\nexport { default as BoundingBoxCircles } from './icons/bounding-box-circles';\r\nexport { default as BoundingBox } from './icons/bounding-box';\r\nexport { default as BoxArrowDownLeft } from './icons/box-arrow-down-left';\r\nexport { default as BoxArrowDownRight } from './icons/box-arrow-down-right';\r\nexport { default as BoxArrowDown } from './icons/box-arrow-down';\r\nexport { default as BoxArrowInDownLeft } from './icons/box-arrow-in-down-left';\r\nexport { default as BoxArrowInDownRight } from './icons/box-arrow-in-down-right';\r\nexport { default as BoxArrowInDown } from './icons/box-arrow-in-down';\r\nexport { default as BoxArrowInLeft } from './icons/box-arrow-in-left';\r\nexport { default as BoxArrowInRight } from './icons/box-arrow-in-right';\r\nexport { default as BoxArrowInUpLeft } from './icons/box-arrow-in-up-left';\r\nexport { default as BoxArrowInUpRight } from './icons/box-arrow-in-up-right';\r\nexport { default as BoxArrowInUp } from './icons/box-arrow-in-up';\r\nexport { default as BoxArrowLeft } from './icons/box-arrow-left';\r\nexport { default as BoxArrowRight } from './icons/box-arrow-right';\r\nexport { default as BoxArrowUpLeft } from './icons/box-arrow-up-left';\r\nexport { default as BoxArrowUpRight } from './icons/box-arrow-up-right';\r\nexport { default as BoxArrowUp } from './icons/box-arrow-up';\r\nexport { default as BoxFill } from './icons/box-fill';\r\nexport { default as BoxSeamFill } from './icons/box-seam-fill';\r\nexport { default as BoxSeam } from './icons/box-seam';\r\nexport { default as Box } from './icons/box';\r\nexport { default as Box2Fill } from './icons/box2-fill';\r\nexport { default as Box2HeartFill } from './icons/box2-heart-fill';\r\nexport { default as Box2Heart } from './icons/box2-heart';\r\nexport { default as Box2 } from './icons/box2';\r\nexport { default as Boxes } from './icons/boxes';\r\nexport { default as BracesAsterisk } from './icons/braces-asterisk';\r\nexport { default as Braces } from './icons/braces';\r\nexport { default as Bricks } from './icons/bricks';\r\nexport { default as BriefcaseFill } from './icons/briefcase-fill';\r\nexport { default as Briefcase } from './icons/briefcase';\r\nexport { default as BrightnessAltHighFill } from './icons/brightness-alt-high-fill';\r\nexport { default as BrightnessAltHigh } from './icons/brightness-alt-high';\r\nexport { default as BrightnessAltLowFill } from './icons/brightness-alt-low-fill';\r\nexport { default as BrightnessAltLow } from './icons/brightness-alt-low';\r\nexport { default as BrightnessHighFill } from './icons/brightness-high-fill';\r\nexport { default as BrightnessHigh } from './icons/brightness-high';\r\nexport { default as BrightnessLowFill } from './icons/brightness-low-fill';\r\nexport { default as BrightnessLow } from './icons/brightness-low';\r\nexport { default as Brilliance } from './icons/brilliance';\r\nexport { default as BroadcastPin } from './icons/broadcast-pin';\r\nexport { default as Broadcast } from './icons/broadcast';\r\nexport { default as BrowserChrome } from './icons/browser-chrome';\r\nexport { default as BrowserEdge } from './icons/browser-edge';\r\nexport { default as BrowserFirefox } from './icons/browser-firefox';\r\nexport { default as BrowserSafari } from './icons/browser-safari';\r\nexport { default as BrushFill } from './icons/brush-fill';\r\nexport { default as Brush } from './icons/brush';\r\nexport { default as BucketFill } from './icons/bucket-fill';\r\nexport { default as Bucket } from './icons/bucket';\r\nexport { default as BugFill } from './icons/bug-fill';\r\nexport { default as Bug } from './icons/bug';\r\nexport { default as BuildingAdd } from './icons/building-add';\r\nexport { default as BuildingCheck } from './icons/building-check';\r\nexport { default as BuildingDash } from './icons/building-dash';\r\nexport { default as BuildingDown } from './icons/building-down';\r\nexport { default as BuildingExclamation } from './icons/building-exclamation';\r\nexport { default as BuildingFillAdd } from './icons/building-fill-add';\r\nexport { default as BuildingFillCheck } from './icons/building-fill-check';\r\nexport { default as BuildingFillDash } from './icons/building-fill-dash';\r\nexport { default as BuildingFillDown } from './icons/building-fill-down';\r\nexport { default as BuildingFillExclamation } from './icons/building-fill-exclamation';\r\nexport { default as BuildingFillGear } from './icons/building-fill-gear';\r\nexport { default as BuildingFillLock } from './icons/building-fill-lock';\r\nexport { default as BuildingFillSlash } from './icons/building-fill-slash';\r\nexport { default as BuildingFillUp } from './icons/building-fill-up';\r\nexport { default as BuildingFillX } from './icons/building-fill-x';\r\nexport { default as BuildingFill } from './icons/building-fill';\r\nexport { default as BuildingGear } from './icons/building-gear';\r\nexport { default as BuildingLock } from './icons/building-lock';\r\nexport { default as BuildingSlash } from './icons/building-slash';\r\nexport { default as BuildingUp } from './icons/building-up';\r\nexport { default as BuildingX } from './icons/building-x';\r\nexport { default as Building } from './icons/building';\r\nexport { default as BuildingsFill } from './icons/buildings-fill';\r\nexport { default as Buildings } from './icons/buildings';\r\nexport { default as Bullseye } from './icons/bullseye';\r\nexport { default as BusFrontFill } from './icons/bus-front-fill';\r\nexport { default as BusFront } from './icons/bus-front';\r\nexport { default as CCircleFill } from './icons/c-circle-fill';\r\nexport { default as CCircle } from './icons/c-circle';\r\nexport { default as CSquareFill } from './icons/c-square-fill';\r\nexport { default as CSquare } from './icons/c-square';\r\nexport { default as CakeFill } from './icons/cake-fill';\r\nexport { default as Cake } from './icons/cake';\r\nexport { default as Cake2Fill } from './icons/cake2-fill';\r\nexport { default as Cake2 } from './icons/cake2';\r\nexport { default as CalculatorFill } from './icons/calculator-fill';\r\nexport { default as Calculator } from './icons/calculator';\r\nexport { default as CalendarCheckFill } from './icons/calendar-check-fill';\r\nexport { default as CalendarCheck } from './icons/calendar-check';\r\nexport { default as CalendarDateFill } from './icons/calendar-date-fill';\r\nexport { default as CalendarDate } from './icons/calendar-date';\r\nexport { default as CalendarDayFill } from './icons/calendar-day-fill';\r\nexport { default as CalendarDay } from './icons/calendar-day';\r\nexport { default as CalendarEventFill } from './icons/calendar-event-fill';\r\nexport { default as CalendarEvent } from './icons/calendar-event';\r\nexport { default as CalendarFill } from './icons/calendar-fill';\r\nexport { default as CalendarHeartFill } from './icons/calendar-heart-fill';\r\nexport { default as CalendarHeart } from './icons/calendar-heart';\r\nexport { default as CalendarMinusFill } from './icons/calendar-minus-fill';\r\nexport { default as CalendarMinus } from './icons/calendar-minus';\r\nexport { default as CalendarMonthFill } from './icons/calendar-month-fill';\r\nexport { default as CalendarMonth } from './icons/calendar-month';\r\nexport { default as CalendarPlusFill } from './icons/calendar-plus-fill';\r\nexport { default as CalendarPlus } from './icons/calendar-plus';\r\nexport { default as CalendarRangeFill } from './icons/calendar-range-fill';\r\nexport { default as CalendarRange } from './icons/calendar-range';\r\nexport { default as CalendarWeekFill } from './icons/calendar-week-fill';\r\nexport { default as CalendarWeek } from './icons/calendar-week';\r\nexport { default as CalendarXFill } from './icons/calendar-x-fill';\r\nexport { default as CalendarX } from './icons/calendar-x';\r\nexport { default as Calendar } from './icons/calendar';\r\nexport { default as Calendar2CheckFill } from './icons/calendar2-check-fill';\r\nexport { default as Calendar2Check } from './icons/calendar2-check';\r\nexport { default as Calendar2DateFill } from './icons/calendar2-date-fill';\r\nexport { default as Calendar2Date } from './icons/calendar2-date';\r\nexport { default as Calendar2DayFill } from './icons/calendar2-day-fill';\r\nexport { default as Calendar2Day } from './icons/calendar2-day';\r\nexport { default as Calendar2EventFill } from './icons/calendar2-event-fill';\r\nexport { default as Calendar2Event } from './icons/calendar2-event';\r\nexport { default as Calendar2Fill } from './icons/calendar2-fill';\r\nexport { default as Calendar2HeartFill } from './icons/calendar2-heart-fill';\r\nexport { default as Calendar2Heart } from './icons/calendar2-heart';\r\nexport { default as Calendar2MinusFill } from './icons/calendar2-minus-fill';\r\nexport { default as Calendar2Minus } from './icons/calendar2-minus';\r\nexport { default as Calendar2MonthFill } from './icons/calendar2-month-fill';\r\nexport { default as Calendar2Month } from './icons/calendar2-month';\r\nexport { default as Calendar2PlusFill } from './icons/calendar2-plus-fill';\r\nexport { default as Calendar2Plus } from './icons/calendar2-plus';\r\nexport { default as Calendar2RangeFill } from './icons/calendar2-range-fill';\r\nexport { default as Calendar2Range } from './icons/calendar2-range';\r\nexport { default as Calendar2WeekFill } from './icons/calendar2-week-fill';\r\nexport { default as Calendar2Week } from './icons/calendar2-week';\r\nexport { default as Calendar2XFill } from './icons/calendar2-x-fill';\r\nexport { default as Calendar2X } from './icons/calendar2-x';\r\nexport { default as Calendar2 } from './icons/calendar2';\r\nexport { default as Calendar3EventFill } from './icons/calendar3-event-fill';\r\nexport { default as Calendar3Event } from './icons/calendar3-event';\r\nexport { default as Calendar3Fill } from './icons/calendar3-fill';\r\nexport { default as Calendar3RangeFill } from './icons/calendar3-range-fill';\r\nexport { default as Calendar3Range } from './icons/calendar3-range';\r\nexport { default as Calendar3WeekFill } from './icons/calendar3-week-fill';\r\nexport { default as Calendar3Week } from './icons/calendar3-week';\r\nexport { default as Calendar3 } from './icons/calendar3';\r\nexport { default as Calendar4Event } from './icons/calendar4-event';\r\nexport { default as Calendar4Range } from './icons/calendar4-range';\r\nexport { default as Calendar4Week } from './icons/calendar4-week';\r\nexport { default as Calendar4 } from './icons/calendar4';\r\nexport { default as CameraFill } from './icons/camera-fill';\r\nexport { default as CameraReelsFill } from './icons/camera-reels-fill';\r\nexport { default as CameraReels } from './icons/camera-reels';\r\nexport { default as CameraVideoFill } from './icons/camera-video-fill';\r\nexport { default as CameraVideoOffFill } from './icons/camera-video-off-fill';\r\nexport { default as CameraVideoOff } from './icons/camera-video-off';\r\nexport { default as CameraVideo } from './icons/camera-video';\r\nexport { default as Camera } from './icons/camera';\r\nexport { default as Camera2 } from './icons/camera2';\r\nexport { default as CapslockFill } from './icons/capslock-fill';\r\nexport { default as Capslock } from './icons/capslock';\r\nexport { default as CapsulePill } from './icons/capsule-pill';\r\nexport { default as Capsule } from './icons/capsule';\r\nexport { default as CarFrontFill } from './icons/car-front-fill';\r\nexport { default as CarFront } from './icons/car-front';\r\nexport { default as CardChecklist } from './icons/card-checklist';\r\nexport { default as CardHeading } from './icons/card-heading';\r\nexport { default as CardImage } from './icons/card-image';\r\nexport { default as CardList } from './icons/card-list';\r\nexport { default as CardText } from './icons/card-text';\r\nexport { default as CaretDownFill } from './icons/caret-down-fill';\r\nexport { default as CaretDownSquareFill } from './icons/caret-down-square-fill';\r\nexport { default as CaretDownSquare } from './icons/caret-down-square';\r\nexport { default as CaretDown } from './icons/caret-down';\r\nexport { default as CaretLeftFill } from './icons/caret-left-fill';\r\nexport { default as CaretLeftSquareFill } from './icons/caret-left-square-fill';\r\nexport { default as CaretLeftSquare } from './icons/caret-left-square';\r\nexport { default as CaretLeft } from './icons/caret-left';\r\nexport { default as CaretRightFill } from './icons/caret-right-fill';\r\nexport { default as CaretRightSquareFill } from './icons/caret-right-square-fill';\r\nexport { default as CaretRightSquare } from './icons/caret-right-square';\r\nexport { default as CaretRight } from './icons/caret-right';\r\nexport { default as CaretUpFill } from './icons/caret-up-fill';\r\nexport { default as CaretUpSquareFill } from './icons/caret-up-square-fill';\r\nexport { default as CaretUpSquare } from './icons/caret-up-square';\r\nexport { default as CaretUp } from './icons/caret-up';\r\nexport { default as CartCheckFill } from './icons/cart-check-fill';\r\nexport { default as CartCheck } from './icons/cart-check';\r\nexport { default as CartDashFill } from './icons/cart-dash-fill';\r\nexport { default as CartDash } from './icons/cart-dash';\r\nexport { default as CartFill } from './icons/cart-fill';\r\nexport { default as CartPlusFill } from './icons/cart-plus-fill';\r\nexport { default as CartPlus } from './icons/cart-plus';\r\nexport { default as CartXFill } from './icons/cart-x-fill';\r\nexport { default as CartX } from './icons/cart-x';\r\nexport { default as Cart } from './icons/cart';\r\nexport { default as Cart2 } from './icons/cart2';\r\nexport { default as Cart3 } from './icons/cart3';\r\nexport { default as Cart4 } from './icons/cart4';\r\nexport { default as CashCoin } from './icons/cash-coin';\r\nexport { default as CashStack } from './icons/cash-stack';\r\nexport { default as Cash } from './icons/cash';\r\nexport { default as CassetteFill } from './icons/cassette-fill';\r\nexport { default as Cassette } from './icons/cassette';\r\nexport { default as Cast } from './icons/cast';\r\nexport { default as CcCircleFill } from './icons/cc-circle-fill';\r\nexport { default as CcCircle } from './icons/cc-circle';\r\nexport { default as CcSquareFill } from './icons/cc-square-fill';\r\nexport { default as CcSquare } from './icons/cc-square';\r\nexport { default as ChatDotsFill } from './icons/chat-dots-fill';\r\nexport { default as ChatDots } from './icons/chat-dots';\r\nexport { default as ChatFill } from './icons/chat-fill';\r\nexport { default as ChatHeartFill } from './icons/chat-heart-fill';\r\nexport { default as ChatHeart } from './icons/chat-heart';\r\nexport { default as ChatLeftDotsFill } from './icons/chat-left-dots-fill';\r\nexport { default as ChatLeftDots } from './icons/chat-left-dots';\r\nexport { default as ChatLeftFill } from './icons/chat-left-fill';\r\nexport { default as ChatLeftHeartFill } from './icons/chat-left-heart-fill';\r\nexport { default as ChatLeftHeart } from './icons/chat-left-heart';\r\nexport { default as ChatLeftQuoteFill } from './icons/chat-left-quote-fill';\r\nexport { default as ChatLeftQuote } from './icons/chat-left-quote';\r\nexport { default as ChatLeftTextFill } from './icons/chat-left-text-fill';\r\nexport { default as ChatLeftText } from './icons/chat-left-text';\r\nexport { default as ChatLeft } from './icons/chat-left';\r\nexport { default as ChatQuoteFill } from './icons/chat-quote-fill';\r\nexport { default as ChatQuote } from './icons/chat-quote';\r\nexport { default as ChatRightDotsFill } from './icons/chat-right-dots-fill';\r\nexport { default as ChatRightDots } from './icons/chat-right-dots';\r\nexport { default as ChatRightFill } from './icons/chat-right-fill';\r\nexport { default as ChatRightHeartFill } from './icons/chat-right-heart-fill';\r\nexport { default as ChatRightHeart } from './icons/chat-right-heart';\r\nexport { default as ChatRightQuoteFill } from './icons/chat-right-quote-fill';\r\nexport { default as ChatRightQuote } from './icons/chat-right-quote';\r\nexport { default as ChatRightTextFill } from './icons/chat-right-text-fill';\r\nexport { default as ChatRightText } from './icons/chat-right-text';\r\nexport { default as ChatRight } from './icons/chat-right';\r\nexport { default as ChatSquareDotsFill } from './icons/chat-square-dots-fill';\r\nexport { default as ChatSquareDots } from './icons/chat-square-dots';\r\nexport { default as ChatSquareFill } from './icons/chat-square-fill';\r\nexport { default as ChatSquareHeartFill } from './icons/chat-square-heart-fill';\r\nexport { default as ChatSquareHeart } from './icons/chat-square-heart';\r\nexport { default as ChatSquareQuoteFill } from './icons/chat-square-quote-fill';\r\nexport { default as ChatSquareQuote } from './icons/chat-square-quote';\r\nexport { default as ChatSquareTextFill } from './icons/chat-square-text-fill';\r\nexport { default as ChatSquareText } from './icons/chat-square-text';\r\nexport { default as ChatSquare } from './icons/chat-square';\r\nexport { default as ChatTextFill } from './icons/chat-text-fill';\r\nexport { default as ChatText } from './icons/chat-text';\r\nexport { default as Chat } from './icons/chat';\r\nexport { default as CheckAll } from './icons/check-all';\r\nexport { default as CheckCircleFill } from './icons/check-circle-fill';\r\nexport { default as CheckCircle } from './icons/check-circle';\r\nexport { default as CheckLg } from './icons/check-lg';\r\nexport { default as CheckSquareFill } from './icons/check-square-fill';\r\nexport { default as CheckSquare } from './icons/check-square';\r\nexport { default as Check } from './icons/check';\r\nexport { default as Check2All } from './icons/check2-all';\r\nexport { default as Check2Circle } from './icons/check2-circle';\r\nexport { default as Check2Square } from './icons/check2-square';\r\nexport { default as Check2 } from './icons/check2';\r\nexport { default as ChevronBarContract } from './icons/chevron-bar-contract';\r\nexport { default as ChevronBarDown } from './icons/chevron-bar-down';\r\nexport { default as ChevronBarExpand } from './icons/chevron-bar-expand';\r\nexport { default as ChevronBarLeft } from './icons/chevron-bar-left';\r\nexport { default as ChevronBarRight } from './icons/chevron-bar-right';\r\nexport { default as ChevronBarUp } from './icons/chevron-bar-up';\r\nexport { default as ChevronCompactDown } from './icons/chevron-compact-down';\r\nexport { default as ChevronCompactLeft } from './icons/chevron-compact-left';\r\nexport { default as ChevronCompactRight } from './icons/chevron-compact-right';\r\nexport { default as ChevronCompactUp } from './icons/chevron-compact-up';\r\nexport { default as ChevronContract } from './icons/chevron-contract';\r\nexport { default as ChevronDoubleDown } from './icons/chevron-double-down';\r\nexport { default as ChevronDoubleLeft } from './icons/chevron-double-left';\r\nexport { default as ChevronDoubleRight } from './icons/chevron-double-right';\r\nexport { default as ChevronDoubleUp } from './icons/chevron-double-up';\r\nexport { default as ChevronDown } from './icons/chevron-down';\r\nexport { default as ChevronExpand } from './icons/chevron-expand';\r\nexport { default as ChevronLeft } from './icons/chevron-left';\r\nexport { default as ChevronRight } from './icons/chevron-right';\r\nexport { default as ChevronUp } from './icons/chevron-up';\r\nexport { default as CircleFill } from './icons/circle-fill';\r\nexport { default as CircleHalf } from './icons/circle-half';\r\nexport { default as CircleSquare } from './icons/circle-square';\r\nexport { default as Circle } from './icons/circle';\r\nexport { default as Claude } from './icons/claude';\r\nexport { default as ClipboardCheckFill } from './icons/clipboard-check-fill';\r\nexport { default as ClipboardCheck } from './icons/clipboard-check';\r\nexport { default as ClipboardDataFill } from './icons/clipboard-data-fill';\r\nexport { default as ClipboardData } from './icons/clipboard-data';\r\nexport { default as ClipboardFill } from './icons/clipboard-fill';\r\nexport { default as ClipboardHeartFill } from './icons/clipboard-heart-fill';\r\nexport { default as ClipboardHeart } from './icons/clipboard-heart';\r\nexport { default as ClipboardMinusFill } from './icons/clipboard-minus-fill';\r\nexport { default as ClipboardMinus } from './icons/clipboard-minus';\r\nexport { default as ClipboardPlusFill } from './icons/clipboard-plus-fill';\r\nexport { default as ClipboardPlus } from './icons/clipboard-plus';\r\nexport { default as ClipboardPulse } from './icons/clipboard-pulse';\r\nexport { default as ClipboardXFill } from './icons/clipboard-x-fill';\r\nexport { default as ClipboardX } from './icons/clipboard-x';\r\nexport { default as Clipboard } from './icons/clipboard';\r\nexport { default as Clipboard2CheckFill } from './icons/clipboard2-check-fill';\r\nexport { default as Clipboard2Check } from './icons/clipboard2-check';\r\nexport { default as Clipboard2DataFill } from './icons/clipboard2-data-fill';\r\nexport { default as Clipboard2Data } from './icons/clipboard2-data';\r\nexport { default as Clipboard2Fill } from './icons/clipboard2-fill';\r\nexport { default as Clipboard2HeartFill } from './icons/clipboard2-heart-fill';\r\nexport { default as Clipboard2Heart } from './icons/clipboard2-heart';\r\nexport { default as Clipboard2MinusFill } from './icons/clipboard2-minus-fill';\r\nexport { default as Clipboard2Minus } from './icons/clipboard2-minus';\r\nexport { default as Clipboard2PlusFill } from './icons/clipboard2-plus-fill';\r\nexport { default as Clipboard2Plus } from './icons/clipboard2-plus';\r\nexport { default as Clipboard2PulseFill } from './icons/clipboard2-pulse-fill';\r\nexport { default as Clipboard2Pulse } from './icons/clipboard2-pulse';\r\nexport { default as Clipboard2XFill } from './icons/clipboard2-x-fill';\r\nexport { default as Clipboard2X } from './icons/clipboard2-x';\r\nexport { default as Clipboard2 } from './icons/clipboard2';\r\nexport { default as ClockFill } from './icons/clock-fill';\r\nexport { default as ClockHistory } from './icons/clock-history';\r\nexport { default as Clock } from './icons/clock';\r\nexport { default as CloudArrowDownFill } from './icons/cloud-arrow-down-fill';\r\nexport { default as CloudArrowDown } from './icons/cloud-arrow-down';\r\nexport { default as CloudArrowUpFill } from './icons/cloud-arrow-up-fill';\r\nexport { default as CloudArrowUp } from './icons/cloud-arrow-up';\r\nexport { default as CloudCheckFill } from './icons/cloud-check-fill';\r\nexport { default as CloudCheck } from './icons/cloud-check';\r\nexport { default as CloudDownloadFill } from './icons/cloud-download-fill';\r\nexport { default as CloudDownload } from './icons/cloud-download';\r\nexport { default as CloudDrizzleFill } from './icons/cloud-drizzle-fill';\r\nexport { default as CloudDrizzle } from './icons/cloud-drizzle';\r\nexport { default as CloudFill } from './icons/cloud-fill';\r\nexport { default as CloudFogFill } from './icons/cloud-fog-fill';\r\nexport { default as CloudFog } from './icons/cloud-fog';\r\nexport { default as CloudFog2Fill } from './icons/cloud-fog2-fill';\r\nexport { default as CloudFog2 } from './icons/cloud-fog2';\r\nexport { default as CloudHailFill } from './icons/cloud-hail-fill';\r\nexport { default as CloudHail } from './icons/cloud-hail';\r\nexport { default as CloudHazeFill } from './icons/cloud-haze-fill';\r\nexport { default as CloudHaze } from './icons/cloud-haze';\r\nexport { default as CloudHaze2Fill } from './icons/cloud-haze2-fill';\r\nexport { default as CloudHaze2 } from './icons/cloud-haze2';\r\nexport { default as CloudLightningFill } from './icons/cloud-lightning-fill';\r\nexport { default as CloudLightningRainFill } from './icons/cloud-lightning-rain-fill';\r\nexport { default as CloudLightningRain } from './icons/cloud-lightning-rain';\r\nexport { default as CloudLightning } from './icons/cloud-lightning';\r\nexport { default as CloudMinusFill } from './icons/cloud-minus-fill';\r\nexport { default as CloudMinus } from './icons/cloud-minus';\r\nexport { default as CloudMoonFill } from './icons/cloud-moon-fill';\r\nexport { default as CloudMoon } from './icons/cloud-moon';\r\nexport { default as CloudPlusFill } from './icons/cloud-plus-fill';\r\nexport { default as CloudPlus } from './icons/cloud-plus';\r\nexport { default as CloudRainFill } from './icons/cloud-rain-fill';\r\nexport { default as CloudRainHeavyFill } from './icons/cloud-rain-heavy-fill';\r\nexport { default as CloudRainHeavy } from './icons/cloud-rain-heavy';\r\nexport { default as CloudRain } from './icons/cloud-rain';\r\nexport { default as CloudSlashFill } from './icons/cloud-slash-fill';\r\nexport { default as CloudSlash } from './icons/cloud-slash';\r\nexport { default as CloudSleetFill } from './icons/cloud-sleet-fill';\r\nexport { default as CloudSleet } from './icons/cloud-sleet';\r\nexport { default as CloudSnowFill } from './icons/cloud-snow-fill';\r\nexport { default as CloudSnow } from './icons/cloud-snow';\r\nexport { default as CloudSunFill } from './icons/cloud-sun-fill';\r\nexport { default as CloudSun } from './icons/cloud-sun';\r\nexport { default as CloudUploadFill } from './icons/cloud-upload-fill';\r\nexport { default as CloudUpload } from './icons/cloud-upload';\r\nexport { default as Cloud } from './icons/cloud';\r\nexport { default as CloudsFill } from './icons/clouds-fill';\r\nexport { default as Clouds } from './icons/clouds';\r\nexport { default as CloudyFill } from './icons/cloudy-fill';\r\nexport { default as Cloudy } from './icons/cloudy';\r\nexport { default as CodeSlash } from './icons/code-slash';\r\nexport { default as CodeSquare } from './icons/code-square';\r\nexport { default as Code } from './icons/code';\r\nexport { default as Coin } from './icons/coin';\r\nexport { default as CollectionFill } from './icons/collection-fill';\r\nexport { default as CollectionPlayFill } from './icons/collection-play-fill';\r\nexport { default as CollectionPlay } from './icons/collection-play';\r\nexport { default as Collection } from './icons/collection';\r\nexport { default as ColumnsGap } from './icons/columns-gap';\r\nexport { default as Columns } from './icons/columns';\r\nexport { default as Command } from './icons/command';\r\nexport { default as CompassFill } from './icons/compass-fill';\r\nexport { default as Compass } from './icons/compass';\r\nexport { default as ConeStriped } from './icons/cone-striped';\r\nexport { default as Cone } from './icons/cone';\r\nexport { default as Controller } from './icons/controller';\r\nexport { default as Cookie } from './icons/cookie';\r\nexport { default as Copy } from './icons/copy';\r\nexport { default as CpuFill } from './icons/cpu-fill';\r\nexport { default as Cpu } from './icons/cpu';\r\nexport { default as CreditCard2BackFill } from './icons/credit-card-2-back-fill';\r\nexport { default as CreditCard2Back } from './icons/credit-card-2-back';\r\nexport { default as CreditCard2FrontFill } from './icons/credit-card-2-front-fill';\r\nexport { default as CreditCard2Front } from './icons/credit-card-2-front';\r\nexport { default as CreditCardFill } from './icons/credit-card-fill';\r\nexport { default as CreditCard } from './icons/credit-card';\r\nexport { default as Crop } from './icons/crop';\r\nexport { default as Crosshair } from './icons/crosshair';\r\nexport { default as Crosshair2 } from './icons/crosshair2';\r\nexport { default as Css } from './icons/css';\r\nexport { default as CupFill } from './icons/cup-fill';\r\nexport { default as CupHotFill } from './icons/cup-hot-fill';\r\nexport { default as CupHot } from './icons/cup-hot';\r\nexport { default as CupStraw } from './icons/cup-straw';\r\nexport { default as Cup } from './icons/cup';\r\nexport { default as CurrencyBitcoin } from './icons/currency-bitcoin';\r\nexport { default as CurrencyDollar } from './icons/currency-dollar';\r\nexport { default as CurrencyEuro } from './icons/currency-euro';\r\nexport { default as CurrencyExchange } from './icons/currency-exchange';\r\nexport { default as CurrencyPound } from './icons/currency-pound';\r\nexport { default as CurrencyRupee } from './icons/currency-rupee';\r\nexport { default as CurrencyYen } from './icons/currency-yen';\r\nexport { default as CursorFill } from './icons/cursor-fill';\r\nexport { default as CursorText } from './icons/cursor-text';\r\nexport { default as Cursor } from './icons/cursor';\r\nexport { default as DashCircleDotted } from './icons/dash-circle-dotted';\r\nexport { default as DashCircleFill } from './icons/dash-circle-fill';\r\nexport { default as DashCircle } from './icons/dash-circle';\r\nexport { default as DashLg } from './icons/dash-lg';\r\nexport { default as DashSquareDotted } from './icons/dash-square-dotted';\r\nexport { default as DashSquareFill } from './icons/dash-square-fill';\r\nexport { default as DashSquare } from './icons/dash-square';\r\nexport { default as Dash } from './icons/dash';\r\nexport { default as DatabaseAdd } from './icons/database-add';\r\nexport { default as DatabaseCheck } from './icons/database-check';\r\nexport { default as DatabaseDash } from './icons/database-dash';\r\nexport { default as DatabaseDown } from './icons/database-down';\r\nexport { default as DatabaseExclamation } from './icons/database-exclamation';\r\nexport { default as DatabaseFillAdd } from './icons/database-fill-add';\r\nexport { default as DatabaseFillCheck } from './icons/database-fill-check';\r\nexport { default as DatabaseFillDash } from './icons/database-fill-dash';\r\nexport { default as DatabaseFillDown } from './icons/database-fill-down';\r\nexport { default as DatabaseFillExclamation } from './icons/database-fill-exclamation';\r\nexport { default as DatabaseFillGear } from './icons/database-fill-gear';\r\nexport { default as DatabaseFillLock } from './icons/database-fill-lock';\r\nexport { default as DatabaseFillSlash } from './icons/database-fill-slash';\r\nexport { default as DatabaseFillUp } from './icons/database-fill-up';\r\nexport { default as DatabaseFillX } from './icons/database-fill-x';\r\nexport { default as DatabaseFill } from './icons/database-fill';\r\nexport { default as DatabaseGear } from './icons/database-gear';\r\nexport { default as DatabaseLock } from './icons/database-lock';\r\nexport { default as DatabaseSlash } from './icons/database-slash';\r\nexport { default as DatabaseUp } from './icons/database-up';\r\nexport { default as DatabaseX } from './icons/database-x';\r\nexport { default as Database } from './icons/database';\r\nexport { default as DeviceHddFill } from './icons/device-hdd-fill';\r\nexport { default as DeviceHdd } from './icons/device-hdd';\r\nexport { default as DeviceSsdFill } from './icons/device-ssd-fill';\r\nexport { default as DeviceSsd } from './icons/device-ssd';\r\nexport { default as Diagram2Fill } from './icons/diagram-2-fill';\r\nexport { default as Diagram2 } from './icons/diagram-2';\r\nexport { default as Diagram3Fill } from './icons/diagram-3-fill';\r\nexport { default as Diagram3 } from './icons/diagram-3';\r\nexport { default as DiamondFill } from './icons/diamond-fill';\r\nexport { default as DiamondHalf } from './icons/diamond-half';\r\nexport { default as Diamond } from './icons/diamond';\r\nexport { default as Dice1Fill } from './icons/dice-1-fill';\r\nexport { default as Dice1 } from './icons/dice-1';\r\nexport { default as Dice2Fill } from './icons/dice-2-fill';\r\nexport { default as Dice2 } from './icons/dice-2';\r\nexport { default as Dice3Fill } from './icons/dice-3-fill';\r\nexport { default as Dice3 } from './icons/dice-3';\r\nexport { default as Dice4Fill } from './icons/dice-4-fill';\r\nexport { default as Dice4 } from './icons/dice-4';\r\nexport { default as Dice5Fill } from './icons/dice-5-fill';\r\nexport { default as Dice5 } from './icons/dice-5';\r\nexport { default as Dice6Fill } from './icons/dice-6-fill';\r\nexport { default as Dice6 } from './icons/dice-6';\r\nexport { default as DiscFill } from './icons/disc-fill';\r\nexport { default as Disc } from './icons/disc';\r\nexport { default as Discord } from './icons/discord';\r\nexport { default as DisplayFill } from './icons/display-fill';\r\nexport { default as Display } from './icons/display';\r\nexport { default as DisplayportFill } from './icons/displayport-fill';\r\nexport { default as Displayport } from './icons/displayport';\r\nexport { default as DistributeHorizontal } from './icons/distribute-horizontal';\r\nexport { default as DistributeVertical } from './icons/distribute-vertical';\r\nexport { default as DoorClosedFill } from './icons/door-closed-fill';\r\nexport { default as DoorClosed } from './icons/door-closed';\r\nexport { default as DoorOpenFill } from './icons/door-open-fill';\r\nexport { default as DoorOpen } from './icons/door-open';\r\nexport { default as Dot } from './icons/dot';\r\nexport { default as Download } from './icons/download';\r\nexport { default as DpadFill } from './icons/dpad-fill';\r\nexport { default as Dpad } from './icons/dpad';\r\nexport { default as Dribbble } from './icons/dribbble';\r\nexport { default as Dropbox } from './icons/dropbox';\r\nexport { default as DropletFill } from './icons/droplet-fill';\r\nexport { default as DropletHalf } from './icons/droplet-half';\r\nexport { default as Droplet } from './icons/droplet';\r\nexport { default as DuffleFill } from './icons/duffle-fill';\r\nexport { default as Duffle } from './icons/duffle';\r\nexport { default as EarFill } from './icons/ear-fill';\r\nexport { default as Ear } from './icons/ear';\r\nexport { default as Earbuds } from './icons/earbuds';\r\nexport { default as EaselFill } from './icons/easel-fill';\r\nexport { default as Easel } from './icons/easel';\r\nexport { default as Easel2Fill } from './icons/easel2-fill';\r\nexport { default as Easel2 } from './icons/easel2';\r\nexport { default as Easel3Fill } from './icons/easel3-fill';\r\nexport { default as Easel3 } from './icons/easel3';\r\nexport { default as EggFill } from './icons/egg-fill';\r\nexport { default as EggFried } from './icons/egg-fried';\r\nexport { default as Egg } from './icons/egg';\r\nexport { default as EjectFill } from './icons/eject-fill';\r\nexport { default as Eject } from './icons/eject';\r\nexport { default as EmojiAngryFill } from './icons/emoji-angry-fill';\r\nexport { default as EmojiAngry } from './icons/emoji-angry';\r\nexport { default as EmojiAstonishedFill } from './icons/emoji-astonished-fill';\r\nexport { default as EmojiAstonished } from './icons/emoji-astonished';\r\nexport { default as EmojiDizzyFill } from './icons/emoji-dizzy-fill';\r\nexport { default as EmojiDizzy } from './icons/emoji-dizzy';\r\nexport { default as EmojiExpressionlessFill } from './icons/emoji-expressionless-fill';\r\nexport { default as EmojiExpressionless } from './icons/emoji-expressionless';\r\nexport { default as EmojiFrownFill } from './icons/emoji-frown-fill';\r\nexport { default as EmojiFrown } from './icons/emoji-frown';\r\nexport { default as EmojiGrimaceFill } from './icons/emoji-grimace-fill';\r\nexport { default as EmojiGrimace } from './icons/emoji-grimace';\r\nexport { default as EmojiGrinFill } from './icons/emoji-grin-fill';\r\nexport { default as EmojiGrin } from './icons/emoji-grin';\r\nexport { default as EmojiHeartEyesFill } from './icons/emoji-heart-eyes-fill';\r\nexport { default as EmojiHeartEyes } from './icons/emoji-heart-eyes';\r\nexport { default as EmojiKissFill } from './icons/emoji-kiss-fill';\r\nexport { default as EmojiKiss } from './icons/emoji-kiss';\r\nexport { default as EmojiLaughingFill } from './icons/emoji-laughing-fill';\r\nexport { default as EmojiLaughing } from './icons/emoji-laughing';\r\nexport { default as EmojiNeutralFill } from './icons/emoji-neutral-fill';\r\nexport { default as EmojiNeutral } from './icons/emoji-neutral';\r\nexport { default as EmojiSmileFill } from './icons/emoji-smile-fill';\r\nexport { default as EmojiSmileUpsideDownFill } from './icons/emoji-smile-upside-down-fill';\r\nexport { default as EmojiSmileUpsideDown } from './icons/emoji-smile-upside-down';\r\nexport { default as EmojiSmile } from './icons/emoji-smile';\r\nexport { default as EmojiSunglassesFill } from './icons/emoji-sunglasses-fill';\r\nexport { default as EmojiSunglasses } from './icons/emoji-sunglasses';\r\nexport { default as EmojiSurpriseFill } from './icons/emoji-surprise-fill';\r\nexport { default as EmojiSurprise } from './icons/emoji-surprise';\r\nexport { default as EmojiTearFill } from './icons/emoji-tear-fill';\r\nexport { default as EmojiTear } from './icons/emoji-tear';\r\nexport { default as EmojiWinkFill } from './icons/emoji-wink-fill';\r\nexport { default as EmojiWink } from './icons/emoji-wink';\r\nexport { default as EnvelopeArrowDownFill } from './icons/envelope-arrow-down-fill';\r\nexport { default as EnvelopeArrowDown } from './icons/envelope-arrow-down';\r\nexport { default as EnvelopeArrowUpFill } from './icons/envelope-arrow-up-fill';\r\nexport { default as EnvelopeArrowUp } from './icons/envelope-arrow-up';\r\nexport { default as EnvelopeAtFill } from './icons/envelope-at-fill';\r\nexport { default as EnvelopeAt } from './icons/envelope-at';\r\nexport { default as EnvelopeCheckFill } from './icons/envelope-check-fill';\r\nexport { default as EnvelopeCheck } from './icons/envelope-check';\r\nexport { default as EnvelopeDashFill } from './icons/envelope-dash-fill';\r\nexport { default as EnvelopeDash } from './icons/envelope-dash';\r\nexport { default as EnvelopeExclamationFill } from './icons/envelope-exclamation-fill';\r\nexport { default as EnvelopeExclamation } from './icons/envelope-exclamation';\r\nexport { default as EnvelopeFill } from './icons/envelope-fill';\r\nexport { default as EnvelopeHeartFill } from './icons/envelope-heart-fill';\r\nexport { default as EnvelopeHeart } from './icons/envelope-heart';\r\nexport { default as EnvelopeOpenFill } from './icons/envelope-open-fill';\r\nexport { default as EnvelopeOpenHeartFill } from './icons/envelope-open-heart-fill';\r\nexport { default as EnvelopeOpenHeart } from './icons/envelope-open-heart';\r\nexport { default as EnvelopeOpen } from './icons/envelope-open';\r\nexport { default as EnvelopePaperFill } from './icons/envelope-paper-fill';\r\nexport { default as EnvelopePaperHeartFill } from './icons/envelope-paper-heart-fill';\r\nexport { default as EnvelopePaperHeart } from './icons/envelope-paper-heart';\r\nexport { default as EnvelopePaper } from './icons/envelope-paper';\r\nexport { default as EnvelopePlusFill } from './icons/envelope-plus-fill';\r\nexport { default as EnvelopePlus } from './icons/envelope-plus';\r\nexport { default as EnvelopeSlashFill } from './icons/envelope-slash-fill';\r\nexport { default as EnvelopeSlash } from './icons/envelope-slash';\r\nexport { default as EnvelopeXFill } from './icons/envelope-x-fill';\r\nexport { default as EnvelopeX } from './icons/envelope-x';\r\nexport { default as Envelope } from './icons/envelope';\r\nexport { default as EraserFill } from './icons/eraser-fill';\r\nexport { default as Eraser } from './icons/eraser';\r\nexport { default as Escape } from './icons/escape';\r\nexport { default as Ethernet } from './icons/ethernet';\r\nexport { default as EvFrontFill } from './icons/ev-front-fill';\r\nexport { default as EvFront } from './icons/ev-front';\r\nexport { default as EvStationFill } from './icons/ev-station-fill';\r\nexport { default as EvStation } from './icons/ev-station';\r\nexport { default as ExclamationCircleFill } from './icons/exclamation-circle-fill';\r\nexport { default as ExclamationCircle } from './icons/exclamation-circle';\r\nexport { default as ExclamationDiamondFill } from './icons/exclamation-diamond-fill';\r\nexport { default as ExclamationDiamond } from './icons/exclamation-diamond';\r\nexport { default as ExclamationLg } from './icons/exclamation-lg';\r\nexport { default as ExclamationOctagonFill } from './icons/exclamation-octagon-fill';\r\nexport { default as ExclamationOctagon } from './icons/exclamation-octagon';\r\nexport { default as ExclamationSquareFill } from './icons/exclamation-square-fill';\r\nexport { default as ExclamationSquare } from './icons/exclamation-square';\r\nexport { default as ExclamationTriangleFill } from './icons/exclamation-triangle-fill';\r\nexport { default as ExclamationTriangle } from './icons/exclamation-triangle';\r\nexport { default as Exclamation } from './icons/exclamation';\r\nexport { default as Exclude } from './icons/exclude';\r\nexport { default as ExplicitFill } from './icons/explicit-fill';\r\nexport { default as Explicit } from './icons/explicit';\r\nexport { default as Exposure } from './icons/exposure';\r\nexport { default as EyeFill } from './icons/eye-fill';\r\nexport { default as EyeSlashFill } from './icons/eye-slash-fill';\r\nexport { default as EyeSlash } from './icons/eye-slash';\r\nexport { default as Eye } from './icons/eye';\r\nexport { default as Eyedropper } from './icons/eyedropper';\r\nexport { default as Eyeglasses } from './icons/eyeglasses';\r\nexport { default as Facebook } from './icons/facebook';\r\nexport { default as Fan } from './icons/fan';\r\nexport { default as FastForwardBtnFill } from './icons/fast-forward-btn-fill';\r\nexport { default as FastForwardBtn } from './icons/fast-forward-btn';\r\nexport { default as FastForwardCircleFill } from './icons/fast-forward-circle-fill';\r\nexport { default as FastForwardCircle } from './icons/fast-forward-circle';\r\nexport { default as FastForwardFill } from './icons/fast-forward-fill';\r\nexport { default as FastForward } from './icons/fast-forward';\r\nexport { default as Feather } from './icons/feather';\r\nexport { default as Feather2 } from './icons/feather2';\r\nexport { default as FileArrowDownFill } from './icons/file-arrow-down-fill';\r\nexport { default as FileArrowDown } from './icons/file-arrow-down';\r\nexport { default as FileArrowUpFill } from './icons/file-arrow-up-fill';\r\nexport { default as FileArrowUp } from './icons/file-arrow-up';\r\nexport { default as FileBarGraphFill } from './icons/file-bar-graph-fill';\r\nexport { default as FileBarGraph } from './icons/file-bar-graph';\r\nexport { default as FileBinaryFill } from './icons/file-binary-fill';\r\nexport { default as FileBinary } from './icons/file-binary';\r\nexport { default as FileBreakFill } from './icons/file-break-fill';\r\nexport { default as FileBreak } from './icons/file-break';\r\nexport { default as FileCheckFill } from './icons/file-check-fill';\r\nexport { default as FileCheck } from './icons/file-check';\r\nexport { default as FileCodeFill } from './icons/file-code-fill';\r\nexport { default as FileCode } from './icons/file-code';\r\nexport { default as FileDiffFill } from './icons/file-diff-fill';\r\nexport { default as FileDiff } from './icons/file-diff';\r\nexport { default as FileEarmarkArrowDownFill } from './icons/file-earmark-arrow-down-fill';\r\nexport { default as FileEarmarkArrowDown } from './icons/file-earmark-arrow-down';\r\nexport { default as FileEarmarkArrowUpFill } from './icons/file-earmark-arrow-up-fill';\r\nexport { default as FileEarmarkArrowUp } from './icons/file-earmark-arrow-up';\r\nexport { default as FileEarmarkBarGraphFill } from './icons/file-earmark-bar-graph-fill';\r\nexport { default as FileEarmarkBarGraph } from './icons/file-earmark-bar-graph';\r\nexport { default as FileEarmarkBinaryFill } from './icons/file-earmark-binary-fill';\r\nexport { default as FileEarmarkBinary } from './icons/file-earmark-binary';\r\nexport { default as FileEarmarkBreakFill } from './icons/file-earmark-break-fill';\r\nexport { default as FileEarmarkBreak } from './icons/file-earmark-break';\r\nexport { default as FileEarmarkCheckFill } from './icons/file-earmark-check-fill';\r\nexport { default as FileEarmarkCheck } from './icons/file-earmark-check';\r\nexport { default as FileEarmarkCodeFill } from './icons/file-earmark-code-fill';\r\nexport { default as FileEarmarkCode } from './icons/file-earmark-code';\r\nexport { default as FileEarmarkDiffFill } from './icons/file-earmark-diff-fill';\r\nexport { default as FileEarmarkDiff } from './icons/file-earmark-diff';\r\nexport { default as FileEarmarkEaselFill } from './icons/file-earmark-easel-fill';\r\nexport { default as FileEarmarkEasel } from './icons/file-earmark-easel';\r\nexport { default as FileEarmarkExcelFill } from './icons/file-earmark-excel-fill';\r\nexport { default as FileEarmarkExcel } from './icons/file-earmark-excel';\r\nexport { default as FileEarmarkFill } from './icons/file-earmark-fill';\r\nexport { default as FileEarmarkFontFill } from './icons/file-earmark-font-fill';\r\nexport { default as FileEarmarkFont } from './icons/file-earmark-font';\r\nexport { default as FileEarmarkImageFill } from './icons/file-earmark-image-fill';\r\nexport { default as FileEarmarkImage } from './icons/file-earmark-image';\r\nexport { default as FileEarmarkLockFill } from './icons/file-earmark-lock-fill';\r\nexport { default as FileEarmarkLock } from './icons/file-earmark-lock';\r\nexport { default as FileEarmarkLock2Fill } from './icons/file-earmark-lock2-fill';\r\nexport { default as FileEarmarkLock2 } from './icons/file-earmark-lock2';\r\nexport { default as FileEarmarkMedicalFill } from './icons/file-earmark-medical-fill';\r\nexport { default as FileEarmarkMedical } from './icons/file-earmark-medical';\r\nexport { default as FileEarmarkMinusFill } from './icons/file-earmark-minus-fill';\r\nexport { default as FileEarmarkMinus } from './icons/file-earmark-minus';\r\nexport { default as FileEarmarkMusicFill } from './icons/file-earmark-music-fill';\r\nexport { default as FileEarmarkMusic } from './icons/file-earmark-music';\r\nexport { default as FileEarmarkPdfFill } from './icons/file-earmark-pdf-fill';\r\nexport { default as FileEarmarkPdf } from './icons/file-earmark-pdf';\r\nexport { default as FileEarmarkPersonFill } from './icons/file-earmark-person-fill';\r\nexport { default as FileEarmarkPerson } from './icons/file-earmark-person';\r\nexport { default as FileEarmarkPlayFill } from './icons/file-earmark-play-fill';\r\nexport { default as FileEarmarkPlay } from './icons/file-earmark-play';\r\nexport { default as FileEarmarkPlusFill } from './icons/file-earmark-plus-fill';\r\nexport { default as FileEarmarkPlus } from './icons/file-earmark-plus';\r\nexport { default as FileEarmarkPostFill } from './icons/file-earmark-post-fill';\r\nexport { default as FileEarmarkPost } from './icons/file-earmark-post';\r\nexport { default as FileEarmarkPptFill } from './icons/file-earmark-ppt-fill';\r\nexport { default as FileEarmarkPpt } from './icons/file-earmark-ppt';\r\nexport { default as FileEarmarkRichtextFill } from './icons/file-earmark-richtext-fill';\r\nexport { default as FileEarmarkRichtext } from './icons/file-earmark-richtext';\r\nexport { default as FileEarmarkRuledFill } from './icons/file-earmark-ruled-fill';\r\nexport { default as FileEarmarkRuled } from './icons/file-earmark-ruled';\r\nexport { default as FileEarmarkSlidesFill } from './icons/file-earmark-slides-fill';\r\nexport { default as FileEarmarkSlides } from './icons/file-earmark-slides';\r\nexport { default as FileEarmarkSpreadsheetFill } from './icons/file-earmark-spreadsheet-fill';\r\nexport { default as FileEarmarkSpreadsheet } from './icons/file-earmark-spreadsheet';\r\nexport { default as FileEarmarkTextFill } from './icons/file-earmark-text-fill';\r\nexport { default as FileEarmarkText } from './icons/file-earmark-text';\r\nexport { default as FileEarmarkWordFill } from './icons/file-earmark-word-fill';\r\nexport { default as FileEarmarkWord } from './icons/file-earmark-word';\r\nexport { default as FileEarmarkXFill } from './icons/file-earmark-x-fill';\r\nexport { default as FileEarmarkX } from './icons/file-earmark-x';\r\nexport { default as FileEarmarkZipFill } from './icons/file-earmark-zip-fill';\r\nexport { default as FileEarmarkZip } from './icons/file-earmark-zip';\r\nexport { default as FileEarmark } from './icons/file-earmark';\r\nexport { default as FileEaselFill } from './icons/file-easel-fill';\r\nexport { default as FileEasel } from './icons/file-easel';\r\nexport { default as FileExcelFill } from './icons/file-excel-fill';\r\nexport { default as FileExcel } from './icons/file-excel';\r\nexport { default as FileFill } from './icons/file-fill';\r\nexport { default as FileFontFill } from './icons/file-font-fill';\r\nexport { default as FileFont } from './icons/file-font';\r\nexport { default as FileImageFill } from './icons/file-image-fill';\r\nexport { default as FileImage } from './icons/file-image';\r\nexport { default as FileLockFill } from './icons/file-lock-fill';\r\nexport { default as FileLock } from './icons/file-lock';\r\nexport { default as FileLock2Fill } from './icons/file-lock2-fill';\r\nexport { default as FileLock2 } from './icons/file-lock2';\r\nexport { default as FileMedicalFill } from './icons/file-medical-fill';\r\nexport { default as FileMedical } from './icons/file-medical';\r\nexport { default as FileMinusFill } from './icons/file-minus-fill';\r\nexport { default as FileMinus } from './icons/file-minus';\r\nexport { default as FileMusicFill } from './icons/file-music-fill';\r\nexport { default as FileMusic } from './icons/file-music';\r\nexport { default as FilePdfFill } from './icons/file-pdf-fill';\r\nexport { default as FilePdf } from './icons/file-pdf';\r\nexport { default as FilePersonFill } from './icons/file-person-fill';\r\nexport { default as FilePerson } from './icons/file-person';\r\nexport { default as FilePlayFill } from './icons/file-play-fill';\r\nexport { default as FilePlay } from './icons/file-play';\r\nexport { default as FilePlusFill } from './icons/file-plus-fill';\r\nexport { default as FilePlus } from './icons/file-plus';\r\nexport { default as FilePostFill } from './icons/file-post-fill';\r\nexport { default as FilePost } from './icons/file-post';\r\nexport { default as FilePptFill } from './icons/file-ppt-fill';\r\nexport { default as FilePpt } from './icons/file-ppt';\r\nexport { default as FileRichtextFill } from './icons/file-richtext-fill';\r\nexport { default as FileRichtext } from './icons/file-richtext';\r\nexport { default as FileRuledFill } from './icons/file-ruled-fill';\r\nexport { default as FileRuled } from './icons/file-ruled';\r\nexport { default as FileSlidesFill } from './icons/file-slides-fill';\r\nexport { default as FileSlides } from './icons/file-slides';\r\nexport { default as FileSpreadsheetFill } from './icons/file-spreadsheet-fill';\r\nexport { default as FileSpreadsheet } from './icons/file-spreadsheet';\r\nexport { default as FileTextFill } from './icons/file-text-fill';\r\nexport { default as FileText } from './icons/file-text';\r\nexport { default as FileWordFill } from './icons/file-word-fill';\r\nexport { default as FileWord } from './icons/file-word';\r\nexport { default as FileXFill } from './icons/file-x-fill';\r\nexport { default as FileX } from './icons/file-x';\r\nexport { default as FileZipFill } from './icons/file-zip-fill';\r\nexport { default as FileZip } from './icons/file-zip';\r\nexport { default as File } from './icons/file';\r\nexport { default as FilesAlt } from './icons/files-alt';\r\nexport { default as Files } from './icons/files';\r\nexport { default as FiletypeAac } from './icons/filetype-aac';\r\nexport { default as FiletypeAi } from './icons/filetype-ai';\r\nexport { default as FiletypeBmp } from './icons/filetype-bmp';\r\nexport { default as FiletypeCs } from './icons/filetype-cs';\r\nexport { default as FiletypeCss } from './icons/filetype-css';\r\nexport { default as FiletypeCsv } from './icons/filetype-csv';\r\nexport { default as FiletypeDoc } from './icons/filetype-doc';\r\nexport { default as FiletypeDocx } from './icons/filetype-docx';\r\nexport { default as FiletypeExe } from './icons/filetype-exe';\r\nexport { default as FiletypeGif } from './icons/filetype-gif';\r\nexport { default as FiletypeHeic } from './icons/filetype-heic';\r\nexport { default as FiletypeHtml } from './icons/filetype-html';\r\nexport { default as FiletypeJava } from './icons/filetype-java';\r\nexport { default as FiletypeJpg } from './icons/filetype-jpg';\r\nexport { default as FiletypeJs } from './icons/filetype-js';\r\nexport { default as FiletypeJson } from './icons/filetype-json';\r\nexport { default as FiletypeJsx } from './icons/filetype-jsx';\r\nexport { default as FiletypeKey } from './icons/filetype-key';\r\nexport { default as FiletypeM4p } from './icons/filetype-m4p';\r\nexport { default as FiletypeMd } from './icons/filetype-md';\r\nexport { default as FiletypeMdx } from './icons/filetype-mdx';\r\nexport { default as FiletypeMov } from './icons/filetype-mov';\r\nexport { default as FiletypeMp3 } from './icons/filetype-mp3';\r\nexport { default as FiletypeMp4 } from './icons/filetype-mp4';\r\nexport { default as FiletypeOtf } from './icons/filetype-otf';\r\nexport { default as FiletypePdf } from './icons/filetype-pdf';\r\nexport { default as FiletypePhp } from './icons/filetype-php';\r\nexport { default as FiletypePng } from './icons/filetype-png';\r\nexport { default as FiletypePpt } from './icons/filetype-ppt';\r\nexport { default as FiletypePptx } from './icons/filetype-pptx';\r\nexport { default as FiletypePsd } from './icons/filetype-psd';\r\nexport { default as FiletypePy } from './icons/filetype-py';\r\nexport { default as FiletypeRaw } from './icons/filetype-raw';\r\nexport { default as FiletypeRb } from './icons/filetype-rb';\r\nexport { default as FiletypeSass } from './icons/filetype-sass';\r\nexport { default as FiletypeScss } from './icons/filetype-scss';\r\nexport { default as FiletypeSh } from './icons/filetype-sh';\r\nexport { default as FiletypeSql } from './icons/filetype-sql';\r\nexport { default as FiletypeSvg } from './icons/filetype-svg';\r\nexport { default as FiletypeTiff } from './icons/filetype-tiff';\r\nexport { default as FiletypeTsx } from './icons/filetype-tsx';\r\nexport { default as FiletypeTtf } from './icons/filetype-ttf';\r\nexport { default as FiletypeTxt } from './icons/filetype-txt';\r\nexport { default as FiletypeWav } from './icons/filetype-wav';\r\nexport { default as FiletypeWoff } from './icons/filetype-woff';\r\nexport { default as FiletypeXls } from './icons/filetype-xls';\r\nexport { default as FiletypeXlsx } from './icons/filetype-xlsx';\r\nexport { default as FiletypeXml } from './icons/filetype-xml';\r\nexport { default as FiletypeYml } from './icons/filetype-yml';\r\nexport { default as Film } from './icons/film';\r\nexport { default as FilterCircleFill } from './icons/filter-circle-fill';\r\nexport { default as FilterCircle } from './icons/filter-circle';\r\nexport { default as FilterLeft } from './icons/filter-left';\r\nexport { default as FilterRight } from './icons/filter-right';\r\nexport { default as FilterSquareFill } from './icons/filter-square-fill';\r\nexport { default as FilterSquare } from './icons/filter-square';\r\nexport { default as Filter } from './icons/filter';\r\nexport { default as Fingerprint } from './icons/fingerprint';\r\nexport { default as Fire } from './icons/fire';\r\nexport { default as FlagFill } from './icons/flag-fill';\r\nexport { default as Flag } from './icons/flag';\r\nexport { default as FlaskFill } from './icons/flask-fill';\r\nexport { default as FlaskFlorenceFill } from './icons/flask-florence-fill';\r\nexport { default as FlaskFlorence } from './icons/flask-florence';\r\nexport { default as Flask } from './icons/flask';\r\nexport { default as FloppyFill } from './icons/floppy-fill';\r\nexport { default as Floppy } from './icons/floppy';\r\nexport { default as Floppy2Fill } from './icons/floppy2-fill';\r\nexport { default as Floppy2 } from './icons/floppy2';\r\nexport { default as Flower1 } from './icons/flower1';\r\nexport { default as Flower2 } from './icons/flower2';\r\nexport { default as Flower3 } from './icons/flower3';\r\nexport { default as FolderCheck } from './icons/folder-check';\r\nexport { default as FolderFill } from './icons/folder-fill';\r\nexport { default as FolderMinus } from './icons/folder-minus';\r\nexport { default as FolderPlus } from './icons/folder-plus';\r\nexport { default as FolderSymlinkFill } from './icons/folder-symlink-fill';\r\nexport { default as FolderSymlink } from './icons/folder-symlink';\r\nexport { default as FolderX } from './icons/folder-x';\r\nexport { default as Folder } from './icons/folder';\r\nexport { default as Folder2Open } from './icons/folder2-open';\r\nexport { default as Folder2 } from './icons/folder2';\r\nexport { default as Fonts } from './icons/fonts';\r\nexport { default as ForkKnife } from './icons/fork-knife';\r\nexport { default as ForwardFill } from './icons/forward-fill';\r\nexport { default as Forward } from './icons/forward';\r\nexport { default as Front } from './icons/front';\r\nexport { default as FuelPumpDieselFill } from './icons/fuel-pump-diesel-fill';\r\nexport { default as FuelPumpDiesel } from './icons/fuel-pump-diesel';\r\nexport { default as FuelPumpFill } from './icons/fuel-pump-fill';\r\nexport { default as FuelPump } from './icons/fuel-pump';\r\nexport { default as FullscreenExit } from './icons/fullscreen-exit';\r\nexport { default as Fullscreen } from './icons/fullscreen';\r\nexport { default as FunnelFill } from './icons/funnel-fill';\r\nexport { default as Funnel } from './icons/funnel';\r\nexport { default as GearFill } from './icons/gear-fill';\r\nexport { default as GearWideConnected } from './icons/gear-wide-connected';\r\nexport { default as GearWide } from './icons/gear-wide';\r\nexport { default as Gear } from './icons/gear';\r\nexport { default as Gem } from './icons/gem';\r\nexport { default as GenderAmbiguous } from './icons/gender-ambiguous';\r\nexport { default as GenderFemale } from './icons/gender-female';\r\nexport { default as GenderMale } from './icons/gender-male';\r\nexport { default as GenderNeuter } from './icons/gender-neuter';\r\nexport { default as GenderTrans } from './icons/gender-trans';\r\nexport { default as GeoAltFill } from './icons/geo-alt-fill';\r\nexport { default as GeoAlt } from './icons/geo-alt';\r\nexport { default as GeoFill } from './icons/geo-fill';\r\nexport { default as Geo } from './icons/geo';\r\nexport { default as GiftFill } from './icons/gift-fill';\r\nexport { default as Gift } from './icons/gift';\r\nexport { default as Git } from './icons/git';\r\nexport { default as Github } from './icons/github';\r\nexport { default as Gitlab } from './icons/gitlab';\r\nexport { default as GlobeAmericasFill } from './icons/globe-americas-fill';\r\nexport { default as GlobeAmericas } from './icons/globe-americas';\r\nexport { default as GlobeAsiaAustraliaFill } from './icons/globe-asia-australia-fill';\r\nexport { default as GlobeAsiaAustralia } from './icons/globe-asia-australia';\r\nexport { default as GlobeCentralSouthAsiaFill } from './icons/globe-central-south-asia-fill';\r\nexport { default as GlobeCentralSouthAsia } from './icons/globe-central-south-asia';\r\nexport { default as GlobeEuropeAfricaFill } from './icons/globe-europe-africa-fill';\r\nexport { default as GlobeEuropeAfrica } from './icons/globe-europe-africa';\r\nexport { default as Globe } from './icons/globe';\r\nexport { default as Globe2 } from './icons/globe2';\r\nexport { default as GooglePlay } from './icons/google-play';\r\nexport { default as Google } from './icons/google';\r\nexport { default as GpuCard } from './icons/gpu-card';\r\nexport { default as GraphDownArrow } from './icons/graph-down-arrow';\r\nexport { default as GraphDown } from './icons/graph-down';\r\nexport { default as GraphUpArrow } from './icons/graph-up-arrow';\r\nexport { default as GraphUp } from './icons/graph-up';\r\nexport { default as Grid1x2Fill } from './icons/grid-1x2-fill';\r\nexport { default as Grid1x2 } from './icons/grid-1x2';\r\nexport { default as Grid3x2GapFill } from './icons/grid-3x2-gap-fill';\r\nexport { default as Grid3x2Gap } from './icons/grid-3x2-gap';\r\nexport { default as Grid3x2 } from './icons/grid-3x2';\r\nexport { default as Grid3x3GapFill } from './icons/grid-3x3-gap-fill';\r\nexport { default as Grid3x3Gap } from './icons/grid-3x3-gap';\r\nexport { default as Grid3x3 } from './icons/grid-3x3';\r\nexport { default as GridFill } from './icons/grid-fill';\r\nexport { default as Grid } from './icons/grid';\r\nexport { default as GripHorizontal } from './icons/grip-horizontal';\r\nexport { default as GripVertical } from './icons/grip-vertical';\r\nexport { default as HCircleFill } from './icons/h-circle-fill';\r\nexport { default as HCircle } from './icons/h-circle';\r\nexport { default as HSquareFill } from './icons/h-square-fill';\r\nexport { default as HSquare } from './icons/h-square';\r\nexport { default as Hammer } from './icons/hammer';\r\nexport { default as HandIndexFill } from './icons/hand-index-fill';\r\nexport { default as HandIndexThumbFill } from './icons/hand-index-thumb-fill';\r\nexport { default as HandIndexThumb } from './icons/hand-index-thumb';\r\nexport { default as HandIndex } from './icons/hand-index';\r\nexport { default as HandThumbsDownFill } from './icons/hand-thumbs-down-fill';\r\nexport { default as HandThumbsDown } from './icons/hand-thumbs-down';\r\nexport { default as HandThumbsUpFill } from './icons/hand-thumbs-up-fill';\r\nexport { default as HandThumbsUp } from './icons/hand-thumbs-up';\r\nexport { default as HandbagFill } from './icons/handbag-fill';\r\nexport { default as Handbag } from './icons/handbag';\r\nexport { default as Hash } from './icons/hash';\r\nexport { default as HddFill } from './icons/hdd-fill';\r\nexport { default as HddNetworkFill } from './icons/hdd-network-fill';\r\nexport { default as HddNetwork } from './icons/hdd-network';\r\nexport { default as HddRackFill } from './icons/hdd-rack-fill';\r\nexport { default as HddRack } from './icons/hdd-rack';\r\nexport { default as HddStackFill } from './icons/hdd-stack-fill';\r\nexport { default as HddStack } from './icons/hdd-stack';\r\nexport { default as Hdd } from './icons/hdd';\r\nexport { default as HdmiFill } from './icons/hdmi-fill';\r\nexport { default as Hdmi } from './icons/hdmi';\r\nexport { default as Headphones } from './icons/headphones';\r\nexport { default as HeadsetVr } from './icons/headset-vr';\r\nexport { default as Headset } from './icons/headset';\r\nexport { default as HeartArrow } from './icons/heart-arrow';\r\nexport { default as HeartFill } from './icons/heart-fill';\r\nexport { default as HeartHalf } from './icons/heart-half';\r\nexport { default as HeartPulseFill } from './icons/heart-pulse-fill';\r\nexport { default as HeartPulse } from './icons/heart-pulse';\r\nexport { default as Heart } from './icons/heart';\r\nexport { default as HeartbreakFill } from './icons/heartbreak-fill';\r\nexport { default as Heartbreak } from './icons/heartbreak';\r\nexport { default as Hearts } from './icons/hearts';\r\nexport { default as HeptagonFill } from './icons/heptagon-fill';\r\nexport { default as HeptagonHalf } from './icons/heptagon-half';\r\nexport { default as Heptagon } from './icons/heptagon';\r\nexport { default as HexagonFill } from './icons/hexagon-fill';\r\nexport { default as HexagonHalf } from './icons/hexagon-half';\r\nexport { default as Hexagon } from './icons/hexagon';\r\nexport { default as Highlighter } from './icons/highlighter';\r\nexport { default as Highlights } from './icons/highlights';\r\nexport { default as HospitalFill } from './icons/hospital-fill';\r\nexport { default as Hospital } from './icons/hospital';\r\nexport { default as HourglassBottom } from './icons/hourglass-bottom';\r\nexport { default as HourglassSplit } from './icons/hourglass-split';\r\nexport { default as HourglassTop } from './icons/hourglass-top';\r\nexport { default as Hourglass } from './icons/hourglass';\r\nexport { default as HouseAddFill } from './icons/house-add-fill';\r\nexport { default as HouseAdd } from './icons/house-add';\r\nexport { default as HouseCheckFill } from './icons/house-check-fill';\r\nexport { default as HouseCheck } from './icons/house-check';\r\nexport { default as HouseDashFill } from './icons/house-dash-fill';\r\nexport { default as HouseDash } from './icons/house-dash';\r\nexport { default as HouseDoorFill } from './icons/house-door-fill';\r\nexport { default as HouseDoor } from './icons/house-door';\r\nexport { default as HouseDownFill } from './icons/house-down-fill';\r\nexport { default as HouseDown } from './icons/house-down';\r\nexport { default as HouseExclamationFill } from './icons/house-exclamation-fill';\r\nexport { default as HouseExclamation } from './icons/house-exclamation';\r\nexport { default as HouseFill } from './icons/house-fill';\r\nexport { default as HouseGearFill } from './icons/house-gear-fill';\r\nexport { default as HouseGear } from './icons/house-gear';\r\nexport { default as HouseHeartFill } from './icons/house-heart-fill';\r\nexport { default as HouseHeart } from './icons/house-heart';\r\nexport { default as HouseLockFill } from './icons/house-lock-fill';\r\nexport { default as HouseLock } from './icons/house-lock';\r\nexport { default as HouseSlashFill } from './icons/house-slash-fill';\r\nexport { default as HouseSlash } from './icons/house-slash';\r\nexport { default as HouseUpFill } from './icons/house-up-fill';\r\nexport { default as HouseUp } from './icons/house-up';\r\nexport { default as HouseXFill } from './icons/house-x-fill';\r\nexport { default as HouseX } from './icons/house-x';\r\nexport { default as House } from './icons/house';\r\nexport { default as HousesFill } from './icons/houses-fill';\r\nexport { default as Houses } from './icons/houses';\r\nexport { default as Hr } from './icons/hr';\r\nexport { default as Hurricane } from './icons/hurricane';\r\nexport { default as Hypnotize } from './icons/hypnotize';\r\nexport { default as ImageAlt } from './icons/image-alt';\r\nexport { default as ImageFill } from './icons/image-fill';\r\nexport { default as Image } from './icons/image';\r\nexport { default as Images } from './icons/images';\r\nexport { default as InboxFill } from './icons/inbox-fill';\r\nexport { default as Inbox } from './icons/inbox';\r\nexport { default as InboxesFill } from './icons/inboxes-fill';\r\nexport { default as Inboxes } from './icons/inboxes';\r\nexport { default as Incognito } from './icons/incognito';\r\nexport { default as Indent } from './icons/indent';\r\nexport { default as Infinity } from './icons/infinity';\r\nexport { default as InfoCircleFill } from './icons/info-circle-fill';\r\nexport { default as InfoCircle } from './icons/info-circle';\r\nexport { default as InfoLg } from './icons/info-lg';\r\nexport { default as InfoSquareFill } from './icons/info-square-fill';\r\nexport { default as InfoSquare } from './icons/info-square';\r\nexport { default as Info } from './icons/info';\r\nexport { default as InputCursorText } from './icons/input-cursor-text';\r\nexport { default as InputCursor } from './icons/input-cursor';\r\nexport { default as Instagram } from './icons/instagram';\r\nexport { default as Intersect } from './icons/intersect';\r\nexport { default as Javascript } from './icons/javascript';\r\nexport { default as JournalAlbum } from './icons/journal-album';\r\nexport { default as JournalArrowDown } from './icons/journal-arrow-down';\r\nexport { default as JournalArrowUp } from './icons/journal-arrow-up';\r\nexport { default as JournalBookmarkFill } from './icons/journal-bookmark-fill';\r\nexport { default as JournalBookmark } from './icons/journal-bookmark';\r\nexport { default as JournalCheck } from './icons/journal-check';\r\nexport { default as JournalCode } from './icons/journal-code';\r\nexport { default as JournalMedical } from './icons/journal-medical';\r\nexport { default as JournalMinus } from './icons/journal-minus';\r\nexport { default as JournalPlus } from './icons/journal-plus';\r\nexport { default as JournalRichtext } from './icons/journal-richtext';\r\nexport { default as JournalText } from './icons/journal-text';\r\nexport { default as JournalX } from './icons/journal-x';\r\nexport { default as Journal } from './icons/journal';\r\nexport { default as Journals } from './icons/journals';\r\nexport { default as Joystick } from './icons/joystick';\r\nexport { default as JustifyLeft } from './icons/justify-left';\r\nexport { default as JustifyRight } from './icons/justify-right';\r\nexport { default as Justify } from './icons/justify';\r\nexport { default as KanbanFill } from './icons/kanban-fill';\r\nexport { default as Kanban } from './icons/kanban';\r\nexport { default as KeyFill } from './icons/key-fill';\r\nexport { default as Key } from './icons/key';\r\nexport { default as KeyboardFill } from './icons/keyboard-fill';\r\nexport { default as Keyboard } from './icons/keyboard';\r\nexport { default as Ladder } from './icons/ladder';\r\nexport { default as LampFill } from './icons/lamp-fill';\r\nexport { default as Lamp } from './icons/lamp';\r\nexport { default as LaptopFill } from './icons/laptop-fill';\r\nexport { default as Laptop } from './icons/laptop';\r\nexport { default as LayerBackward } from './icons/layer-backward';\r\nexport { default as LayerForward } from './icons/layer-forward';\r\nexport { default as LayersFill } from './icons/layers-fill';\r\nexport { default as LayersHalf } from './icons/layers-half';\r\nexport { default as Layers } from './icons/layers';\r\nexport { default as LayoutSidebarInsetReverse } from './icons/layout-sidebar-inset-reverse';\r\nexport { default as LayoutSidebarInset } from './icons/layout-sidebar-inset';\r\nexport { default as LayoutSidebarReverse } from './icons/layout-sidebar-reverse';\r\nexport { default as LayoutSidebar } from './icons/layout-sidebar';\r\nexport { default as LayoutSplit } from './icons/layout-split';\r\nexport { default as LayoutTextSidebarReverse } from './icons/layout-text-sidebar-reverse';\r\nexport { default as LayoutTextSidebar } from './icons/layout-text-sidebar';\r\nexport { default as LayoutTextWindowReverse } from './icons/layout-text-window-reverse';\r\nexport { default as LayoutTextWindow } from './icons/layout-text-window';\r\nexport { default as LayoutThreeColumns } from './icons/layout-three-columns';\r\nexport { default as LayoutWtf } from './icons/layout-wtf';\r\nexport { default as LeafFill } from './icons/leaf-fill';\r\nexport { default as Leaf } from './icons/leaf';\r\nexport { default as LifePreserver } from './icons/life-preserver';\r\nexport { default as LightbulbFill } from './icons/lightbulb-fill';\r\nexport { default as LightbulbOffFill } from './icons/lightbulb-off-fill';\r\nexport { default as LightbulbOff } from './icons/lightbulb-off';\r\nexport { default as Lightbulb } from './icons/lightbulb';\r\nexport { default as LightningChargeFill } from './icons/lightning-charge-fill';\r\nexport { default as LightningCharge } from './icons/lightning-charge';\r\nexport { default as LightningFill } from './icons/lightning-fill';\r\nexport { default as Lightning } from './icons/lightning';\r\nexport { default as Line } from './icons/line';\r\nexport { default as Link45deg } from './icons/link-45deg';\r\nexport { default as Link } from './icons/link';\r\nexport { default as Linkedin } from './icons/linkedin';\r\nexport { default as ListCheck } from './icons/list-check';\r\nexport { default as ListColumnsReverse } from './icons/list-columns-reverse';\r\nexport { default as ListColumns } from './icons/list-columns';\r\nexport { default as ListNested } from './icons/list-nested';\r\nexport { default as ListOl } from './icons/list-ol';\r\nexport { default as ListStars } from './icons/list-stars';\r\nexport { default as ListTask } from './icons/list-task';\r\nexport { default as ListUl } from './icons/list-ul';\r\nexport { default as List } from './icons/list';\r\nexport { default as LockFill } from './icons/lock-fill';\r\nexport { default as Lock } from './icons/lock';\r\nexport { default as LuggageFill } from './icons/luggage-fill';\r\nexport { default as Luggage } from './icons/luggage';\r\nexport { default as LungsFill } from './icons/lungs-fill';\r\nexport { default as Lungs } from './icons/lungs';\r\nexport { default as Magic } from './icons/magic';\r\nexport { default as MagnetFill } from './icons/magnet-fill';\r\nexport { default as Magnet } from './icons/magnet';\r\nexport { default as MailboxFlag } from './icons/mailbox-flag';\r\nexport { default as Mailbox } from './icons/mailbox';\r\nexport { default as Mailbox2Flag } from './icons/mailbox2-flag';\r\nexport { default as Mailbox2 } from './icons/mailbox2';\r\nexport { default as MapFill } from './icons/map-fill';\r\nexport { default as Map } from './icons/map';\r\nexport { default as MarkdownFill } from './icons/markdown-fill';\r\nexport { default as Markdown } from './icons/markdown';\r\nexport { default as MarkerTip } from './icons/marker-tip';\r\nexport { default as Mask } from './icons/mask';\r\nexport { default as Mastodon } from './icons/mastodon';\r\nexport { default as MeasuringCupFill } from './icons/measuring-cup-fill';\r\nexport { default as MeasuringCup } from './icons/measuring-cup';\r\nexport { default as Medium } from './icons/medium';\r\nexport { default as MegaphoneFill } from './icons/megaphone-fill';\r\nexport { default as Megaphone } from './icons/megaphone';\r\nexport { default as Memory } from './icons/memory';\r\nexport { default as MenuAppFill } from './icons/menu-app-fill';\r\nexport { default as MenuApp } from './icons/menu-app';\r\nexport { default as MenuButtonFill } from './icons/menu-button-fill';\r\nexport { default as MenuButtonWideFill } from './icons/menu-button-wide-fill';\r\nexport { default as MenuButtonWide } from './icons/menu-button-wide';\r\nexport { default as MenuButton } from './icons/menu-button';\r\nexport { default as MenuDown } from './icons/menu-down';\r\nexport { default as MenuUp } from './icons/menu-up';\r\nexport { default as Messenger } from './icons/messenger';\r\nexport { default as Meta } from './icons/meta';\r\nexport { default as MicFill } from './icons/mic-fill';\r\nexport { default as MicMuteFill } from './icons/mic-mute-fill';\r\nexport { default as MicMute } from './icons/mic-mute';\r\nexport { default as Mic } from './icons/mic';\r\nexport { default as MicrosoftTeams } from './icons/microsoft-teams';\r\nexport { default as Microsoft } from './icons/microsoft';\r\nexport { default as MinecartLoaded } from './icons/minecart-loaded';\r\nexport { default as Minecart } from './icons/minecart';\r\nexport { default as ModemFill } from './icons/modem-fill';\r\nexport { default as Modem } from './icons/modem';\r\nexport { default as Moisture } from './icons/moisture';\r\nexport { default as MoonFill } from './icons/moon-fill';\r\nexport { default as MoonStarsFill } from './icons/moon-stars-fill';\r\nexport { default as MoonStars } from './icons/moon-stars';\r\nexport { default as Moon } from './icons/moon';\r\nexport { default as MortarboardFill } from './icons/mortarboard-fill';\r\nexport { default as Mortarboard } from './icons/mortarboard';\r\nexport { default as MotherboardFill } from './icons/motherboard-fill';\r\nexport { default as Motherboard } from './icons/motherboard';\r\nexport { default as MouseFill } from './icons/mouse-fill';\r\nexport { default as Mouse } from './icons/mouse';\r\nexport { default as Mouse2Fill } from './icons/mouse2-fill';\r\nexport { default as Mouse2 } from './icons/mouse2';\r\nexport { default as Mouse3Fill } from './icons/mouse3-fill';\r\nexport { default as Mouse3 } from './icons/mouse3';\r\nexport { default as MusicNoteBeamed } from './icons/music-note-beamed';\r\nexport { default as MusicNoteList } from './icons/music-note-list';\r\nexport { default as MusicNote } from './icons/music-note';\r\nexport { default as MusicPlayerFill } from './icons/music-player-fill';\r\nexport { default as MusicPlayer } from './icons/music-player';\r\nexport { default as Newspaper } from './icons/newspaper';\r\nexport { default as NintendoSwitch } from './icons/nintendo-switch';\r\nexport { default as NodeMinusFill } from './icons/node-minus-fill';\r\nexport { default as NodeMinus } from './icons/node-minus';\r\nexport { default as NodePlusFill } from './icons/node-plus-fill';\r\nexport { default as NodePlus } from './icons/node-plus';\r\nexport { default as NoiseReduction } from './icons/noise-reduction';\r\nexport { default as NutFill } from './icons/nut-fill';\r\nexport { default as Nut } from './icons/nut';\r\nexport { default as Nvidia } from './icons/nvidia';\r\nexport { default as NvmeFill } from './icons/nvme-fill';\r\nexport { default as Nvme } from './icons/nvme';\r\nexport { default as OctagonFill } from './icons/octagon-fill';\r\nexport { default as OctagonHalf } from './icons/octagon-half';\r\nexport { default as Octagon } from './icons/octagon';\r\nexport { default as Openai } from './icons/openai';\r\nexport { default as Opencollective } from './icons/opencollective';\r\nexport { default as OpticalAudioFill } from './icons/optical-audio-fill';\r\nexport { default as OpticalAudio } from './icons/optical-audio';\r\nexport { default as Option } from './icons/option';\r\nexport { default as Outlet } from './icons/outlet';\r\nexport { default as PCircleFill } from './icons/p-circle-fill';\r\nexport { default as PCircle } from './icons/p-circle';\r\nexport { default as PSquareFill } from './icons/p-square-fill';\r\nexport { default as PSquare } from './icons/p-square';\r\nexport { default as PaintBucket } from './icons/paint-bucket';\r\nexport { default as PaletteFill } from './icons/palette-fill';\r\nexport { default as Palette } from './icons/palette';\r\nexport { default as Palette2 } from './icons/palette2';\r\nexport { default as Paperclip } from './icons/paperclip';\r\nexport { default as Paragraph } from './icons/paragraph';\r\nexport { default as PassFill } from './icons/pass-fill';\r\nexport { default as Pass } from './icons/pass';\r\nexport { default as PassportFill } from './icons/passport-fill';\r\nexport { default as Passport } from './icons/passport';\r\nexport { default as PatchCheckFill } from './icons/patch-check-fill';\r\nexport { default as PatchCheck } from './icons/patch-check';\r\nexport { default as PatchExclamationFill } from './icons/patch-exclamation-fill';\r\nexport { default as PatchExclamation } from './icons/patch-exclamation';\r\nexport { default as PatchMinusFill } from './icons/patch-minus-fill';\r\nexport { default as PatchMinus } from './icons/patch-minus';\r\nexport { default as PatchPlusFill } from './icons/patch-plus-fill';\r\nexport { default as PatchPlus } from './icons/patch-plus';\r\nexport { default as PatchQuestionFill } from './icons/patch-question-fill';\r\nexport { default as PatchQuestion } from './icons/patch-question';\r\nexport { default as PauseBtnFill } from './icons/pause-btn-fill';\r\nexport { default as PauseBtn } from './icons/pause-btn';\r\nexport { default as PauseCircleFill } from './icons/pause-circle-fill';\r\nexport { default as PauseCircle } from './icons/pause-circle';\r\nexport { default as PauseFill } from './icons/pause-fill';\r\nexport { default as Pause } from './icons/pause';\r\nexport { default as Paypal } from './icons/paypal';\r\nexport { default as PcDisplayHorizontal } from './icons/pc-display-horizontal';\r\nexport { default as PcDisplay } from './icons/pc-display';\r\nexport { default as PcHorizontal } from './icons/pc-horizontal';\r\nexport { default as Pc } from './icons/pc';\r\nexport { default as PciCardNetwork } from './icons/pci-card-network';\r\nexport { default as PciCardSound } from './icons/pci-card-sound';\r\nexport { default as PciCard } from './icons/pci-card';\r\nexport { default as PeaceFill } from './icons/peace-fill';\r\nexport { default as Peace } from './icons/peace';\r\nexport { default as PenFill } from './icons/pen-fill';\r\nexport { default as Pen } from './icons/pen';\r\nexport { default as PencilFill } from './icons/pencil-fill';\r\nexport { default as PencilSquare } from './icons/pencil-square';\r\nexport { default as Pencil } from './icons/pencil';\r\nexport { default as PentagonFill } from './icons/pentagon-fill';\r\nexport { default as PentagonHalf } from './icons/pentagon-half';\r\nexport { default as Pentagon } from './icons/pentagon';\r\nexport { default as PeopleFill } from './icons/people-fill';\r\nexport { default as People } from './icons/people';\r\nexport { default as Percent } from './icons/percent';\r\nexport { default as Perplexity } from './icons/perplexity';\r\nexport { default as PersonAdd } from './icons/person-add';\r\nexport { default as PersonArmsUp } from './icons/person-arms-up';\r\nexport { default as PersonBadgeFill } from './icons/person-badge-fill';\r\nexport { default as PersonBadge } from './icons/person-badge';\r\nexport { default as PersonBoundingBox } from './icons/person-bounding-box';\r\nexport { default as PersonCheckFill } from './icons/person-check-fill';\r\nexport { default as PersonCheck } from './icons/person-check';\r\nexport { default as PersonCircle } from './icons/person-circle';\r\nexport { default as PersonDashFill } from './icons/person-dash-fill';\r\nexport { default as PersonDash } from './icons/person-dash';\r\nexport { default as PersonDown } from './icons/person-down';\r\nexport { default as PersonExclamation } from './icons/person-exclamation';\r\nexport { default as PersonFillAdd } from './icons/person-fill-add';\r\nexport { default as PersonFillCheck } from './icons/person-fill-check';\r\nexport { default as PersonFillDash } from './icons/person-fill-dash';\r\nexport { default as PersonFillDown } from './icons/person-fill-down';\r\nexport { default as PersonFillExclamation } from './icons/person-fill-exclamation';\r\nexport { default as PersonFillGear } from './icons/person-fill-gear';\r\nexport { default as PersonFillLock } from './icons/person-fill-lock';\r\nexport { default as PersonFillSlash } from './icons/person-fill-slash';\r\nexport { default as PersonFillUp } from './icons/person-fill-up';\r\nexport { default as PersonFillX } from './icons/person-fill-x';\r\nexport { default as PersonFill } from './icons/person-fill';\r\nexport { default as PersonGear } from './icons/person-gear';\r\nexport { default as PersonHeart } from './icons/person-heart';\r\nexport { default as PersonHearts } from './icons/person-hearts';\r\nexport { default as PersonLinesFill } from './icons/person-lines-fill';\r\nexport { default as PersonLock } from './icons/person-lock';\r\nexport { default as PersonPlusFill } from './icons/person-plus-fill';\r\nexport { default as PersonPlus } from './icons/person-plus';\r\nexport { default as PersonRaisedHand } from './icons/person-raised-hand';\r\nexport { default as PersonRolodex } from './icons/person-rolodex';\r\nexport { default as PersonSlash } from './icons/person-slash';\r\nexport { default as PersonSquare } from './icons/person-square';\r\nexport { default as PersonStandingDress } from './icons/person-standing-dress';\r\nexport { default as PersonStanding } from './icons/person-standing';\r\nexport { default as PersonUp } from './icons/person-up';\r\nexport { default as PersonVcardFill } from './icons/person-vcard-fill';\r\nexport { default as PersonVcard } from './icons/person-vcard';\r\nexport { default as PersonVideo } from './icons/person-video';\r\nexport { default as PersonVideo2 } from './icons/person-video2';\r\nexport { default as PersonVideo3 } from './icons/person-video3';\r\nexport { default as PersonWalking } from './icons/person-walking';\r\nexport { default as PersonWheelchair } from './icons/person-wheelchair';\r\nexport { default as PersonWorkspace } from './icons/person-workspace';\r\nexport { default as PersonXFill } from './icons/person-x-fill';\r\nexport { default as PersonX } from './icons/person-x';\r\nexport { default as Person } from './icons/person';\r\nexport { default as PhoneFill } from './icons/phone-fill';\r\nexport { default as PhoneFlip } from './icons/phone-flip';\r\nexport { default as PhoneLandscapeFill } from './icons/phone-landscape-fill';\r\nexport { default as PhoneLandscape } from './icons/phone-landscape';\r\nexport { default as PhoneVibrateFill } from './icons/phone-vibrate-fill';\r\nexport { default as PhoneVibrate } from './icons/phone-vibrate';\r\nexport { default as Phone } from './icons/phone';\r\nexport { default as PieChartFill } from './icons/pie-chart-fill';\r\nexport { default as PieChart } from './icons/pie-chart';\r\nexport { default as PiggyBankFill } from './icons/piggy-bank-fill';\r\nexport { default as PiggyBank } from './icons/piggy-bank';\r\nexport { default as PinAngleFill } from './icons/pin-angle-fill';\r\nexport { default as PinAngle } from './icons/pin-angle';\r\nexport { default as PinFill } from './icons/pin-fill';\r\nexport { default as PinMapFill } from './icons/pin-map-fill';\r\nexport { default as PinMap } from './icons/pin-map';\r\nexport { default as Pin } from './icons/pin';\r\nexport { default as Pinterest } from './icons/pinterest';\r\nexport { default as PipFill } from './icons/pip-fill';\r\nexport { default as Pip } from './icons/pip';\r\nexport { default as PlayBtnFill } from './icons/play-btn-fill';\r\nexport { default as PlayBtn } from './icons/play-btn';\r\nexport { default as PlayCircleFill } from './icons/play-circle-fill';\r\nexport { default as PlayCircle } from './icons/play-circle';\r\nexport { default as PlayFill } from './icons/play-fill';\r\nexport { default as Play } from './icons/play';\r\nexport { default as Playstation } from './icons/playstation';\r\nexport { default as PlugFill } from './icons/plug-fill';\r\nexport { default as Plug } from './icons/plug';\r\nexport { default as Plugin } from './icons/plugin';\r\nexport { default as PlusCircleDotted } from './icons/plus-circle-dotted';\r\nexport { default as PlusCircleFill } from './icons/plus-circle-fill';\r\nexport { default as PlusCircle } from './icons/plus-circle';\r\nexport { default as PlusLg } from './icons/plus-lg';\r\nexport { default as PlusSlashMinus } from './icons/plus-slash-minus';\r\nexport { default as PlusSquareDotted } from './icons/plus-square-dotted';\r\nexport { default as PlusSquareFill } from './icons/plus-square-fill';\r\nexport { default as PlusSquare } from './icons/plus-square';\r\nexport { default as Plus } from './icons/plus';\r\nexport { default as PostageFill } from './icons/postage-fill';\r\nexport { default as PostageHeartFill } from './icons/postage-heart-fill';\r\nexport { default as PostageHeart } from './icons/postage-heart';\r\nexport { default as Postage } from './icons/postage';\r\nexport { default as PostcardFill } from './icons/postcard-fill';\r\nexport { default as PostcardHeartFill } from './icons/postcard-heart-fill';\r\nexport { default as PostcardHeart } from './icons/postcard-heart';\r\nexport { default as Postcard } from './icons/postcard';\r\nexport { default as Power } from './icons/power';\r\nexport { default as Prescription } from './icons/prescription';\r\nexport { default as Prescription2 } from './icons/prescription2';\r\nexport { default as PrinterFill } from './icons/printer-fill';\r\nexport { default as Printer } from './icons/printer';\r\nexport { default as ProjectorFill } from './icons/projector-fill';\r\nexport { default as Projector } from './icons/projector';\r\nexport { default as PuzzleFill } from './icons/puzzle-fill';\r\nexport { default as Puzzle } from './icons/puzzle';\r\nexport { default as QrCodeScan } from './icons/qr-code-scan';\r\nexport { default as QrCode } from './icons/qr-code';\r\nexport { default as QuestionCircleFill } from './icons/question-circle-fill';\r\nexport { default as QuestionCircle } from './icons/question-circle';\r\nexport { default as QuestionDiamondFill } from './icons/question-diamond-fill';\r\nexport { default as QuestionDiamond } from './icons/question-diamond';\r\nexport { default as QuestionLg } from './icons/question-lg';\r\nexport { default as QuestionOctagonFill } from './icons/question-octagon-fill';\r\nexport { default as QuestionOctagon } from './icons/question-octagon';\r\nexport { default as QuestionSquareFill } from './icons/question-square-fill';\r\nexport { default as QuestionSquare } from './icons/question-square';\r\nexport { default as Question } from './icons/question';\r\nexport { default as Quora } from './icons/quora';\r\nexport { default as Quote } from './icons/quote';\r\nexport { default as RCircleFill } from './icons/r-circle-fill';\r\nexport { default as RCircle } from './icons/r-circle';\r\nexport { default as RSquareFill } from './icons/r-square-fill';\r\nexport { default as RSquare } from './icons/r-square';\r\nexport { default as Radar } from './icons/radar';\r\nexport { default as Radioactive } from './icons/radioactive';\r\nexport { default as Rainbow } from './icons/rainbow';\r\nexport { default as ReceiptCutoff } from './icons/receipt-cutoff';\r\nexport { default as Receipt } from './icons/receipt';\r\nexport { default as Reception0 } from './icons/reception-0';\r\nexport { default as Reception1 } from './icons/reception-1';\r\nexport { default as Reception2 } from './icons/reception-2';\r\nexport { default as Reception3 } from './icons/reception-3';\r\nexport { default as Reception4 } from './icons/reception-4';\r\nexport { default as RecordBtnFill } from './icons/record-btn-fill';\r\nexport { default as RecordBtn } from './icons/record-btn';\r\nexport { default as RecordCircleFill } from './icons/record-circle-fill';\r\nexport { default as RecordCircle } from './icons/record-circle';\r\nexport { default as RecordFill } from './icons/record-fill';\r\nexport { default as Record } from './icons/record';\r\nexport { default as Record2Fill } from './icons/record2-fill';\r\nexport { default as Record2 } from './icons/record2';\r\nexport { default as Recycle } from './icons/recycle';\r\nexport { default as Reddit } from './icons/reddit';\r\nexport { default as Regex } from './icons/regex';\r\nexport { default as Repeat1 } from './icons/repeat-1';\r\nexport { default as Repeat } from './icons/repeat';\r\nexport { default as ReplyAllFill } from './icons/reply-all-fill';\r\nexport { default as ReplyAll } from './icons/reply-all';\r\nexport { default as ReplyFill } from './icons/reply-fill';\r\nexport { default as Reply } from './icons/reply';\r\nexport { default as RewindBtnFill } from './icons/rewind-btn-fill';\r\nexport { default as RewindBtn } from './icons/rewind-btn';\r\nexport { default as RewindCircleFill } from './icons/rewind-circle-fill';\r\nexport { default as RewindCircle } from './icons/rewind-circle';\r\nexport { default as RewindFill } from './icons/rewind-fill';\r\nexport { default as Rewind } from './icons/rewind';\r\nexport { default as Robot } from './icons/robot';\r\nexport { default as RocketFill } from './icons/rocket-fill';\r\nexport { default as RocketTakeoffFill } from './icons/rocket-takeoff-fill';\r\nexport { default as RocketTakeoff } from './icons/rocket-takeoff';\r\nexport { default as Rocket } from './icons/rocket';\r\nexport { default as RouterFill } from './icons/router-fill';\r\nexport { default as Router } from './icons/router';\r\nexport { default as RssFill } from './icons/rss-fill';\r\nexport { default as Rss } from './icons/rss';\r\nexport { default as Rulers } from './icons/rulers';\r\nexport { default as SafeFill } from './icons/safe-fill';\r\nexport { default as Safe } from './icons/safe';\r\nexport { default as Safe2Fill } from './icons/safe2-fill';\r\nexport { default as Safe2 } from './icons/safe2';\r\nexport { default as SaveFill } from './icons/save-fill';\r\nexport { default as Save } from './icons/save';\r\nexport { default as Save2Fill } from './icons/save2-fill';\r\nexport { default as Save2 } from './icons/save2';\r\nexport { default as Scissors } from './icons/scissors';\r\nexport { default as Scooter } from './icons/scooter';\r\nexport { default as Screwdriver } from './icons/screwdriver';\r\nexport { default as SdCardFill } from './icons/sd-card-fill';\r\nexport { default as SdCard } from './icons/sd-card';\r\nexport { default as SearchHeartFill } from './icons/search-heart-fill';\r\nexport { default as SearchHeart } from './icons/search-heart';\r\nexport { default as Search } from './icons/search';\r\nexport { default as SegmentedNav } from './icons/segmented-nav';\r\nexport { default as SendArrowDownFill } from './icons/send-arrow-down-fill';\r\nexport { default as SendArrowDown } from './icons/send-arrow-down';\r\nexport { default as SendArrowUpFill } from './icons/send-arrow-up-fill';\r\nexport { default as SendArrowUp } from './icons/send-arrow-up';\r\nexport { default as SendCheckFill } from './icons/send-check-fill';\r\nexport { default as SendCheck } from './icons/send-check';\r\nexport { default as SendDashFill } from './icons/send-dash-fill';\r\nexport { default as SendDash } from './icons/send-dash';\r\nexport { default as SendExclamationFill } from './icons/send-exclamation-fill';\r\nexport { default as SendExclamation } from './icons/send-exclamation';\r\nexport { default as SendFill } from './icons/send-fill';\r\nexport { default as SendPlusFill } from './icons/send-plus-fill';\r\nexport { default as SendPlus } from './icons/send-plus';\r\nexport { default as SendSlashFill } from './icons/send-slash-fill';\r\nexport { default as SendSlash } from './icons/send-slash';\r\nexport { default as SendXFill } from './icons/send-x-fill';\r\nexport { default as SendX } from './icons/send-x';\r\nexport { default as Send } from './icons/send';\r\nexport { default as Server } from './icons/server';\r\nexport { default as Shadows } from './icons/shadows';\r\nexport { default as ShareFill } from './icons/share-fill';\r\nexport { default as Share } from './icons/share';\r\nexport { default as ShieldCheck } from './icons/shield-check';\r\nexport { default as ShieldExclamation } from './icons/shield-exclamation';\r\nexport { default as ShieldFillCheck } from './icons/shield-fill-check';\r\nexport { default as ShieldFillExclamation } from './icons/shield-fill-exclamation';\r\nexport { default as ShieldFillMinus } from './icons/shield-fill-minus';\r\nexport { default as ShieldFillPlus } from './icons/shield-fill-plus';\r\nexport { default as ShieldFillX } from './icons/shield-fill-x';\r\nexport { default as ShieldFill } from './icons/shield-fill';\r\nexport { default as ShieldLockFill } from './icons/shield-lock-fill';\r\nexport { default as ShieldLock } from './icons/shield-lock';\r\nexport { default as ShieldMinus } from './icons/shield-minus';\r\nexport { default as ShieldPlus } from './icons/shield-plus';\r\nexport { default as ShieldShaded } from './icons/shield-shaded';\r\nexport { default as ShieldSlashFill } from './icons/shield-slash-fill';\r\nexport { default as ShieldSlash } from './icons/shield-slash';\r\nexport { default as ShieldX } from './icons/shield-x';\r\nexport { default as Shield } from './icons/shield';\r\nexport { default as ShiftFill } from './icons/shift-fill';\r\nexport { default as Shift } from './icons/shift';\r\nexport { default as ShopWindow } from './icons/shop-window';\r\nexport { default as Shop } from './icons/shop';\r\nexport { default as Shuffle } from './icons/shuffle';\r\nexport { default as SignDeadEndFill } from './icons/sign-dead-end-fill';\r\nexport { default as SignDeadEnd } from './icons/sign-dead-end';\r\nexport { default as SignDoNotEnterFill } from './icons/sign-do-not-enter-fill';\r\nexport { default as SignDoNotEnter } from './icons/sign-do-not-enter';\r\nexport { default as SignIntersectionFill } from './icons/sign-intersection-fill';\r\nexport { default as SignIntersectionSideFill } from './icons/sign-intersection-side-fill';\r\nexport { default as SignIntersectionSide } from './icons/sign-intersection-side';\r\nexport { default as SignIntersectionTFill } from './icons/sign-intersection-t-fill';\r\nexport { default as SignIntersectionT } from './icons/sign-intersection-t';\r\nexport { default as SignIntersectionYFill } from './icons/sign-intersection-y-fill';\r\nexport { default as SignIntersectionY } from './icons/sign-intersection-y';\r\nexport { default as SignIntersection } from './icons/sign-intersection';\r\nexport { default as SignMergeLeftFill } from './icons/sign-merge-left-fill';\r\nexport { default as SignMergeLeft } from './icons/sign-merge-left';\r\nexport { default as SignMergeRightFill } from './icons/sign-merge-right-fill';\r\nexport { default as SignMergeRight } from './icons/sign-merge-right';\r\nexport { default as SignNoLeftTurnFill } from './icons/sign-no-left-turn-fill';\r\nexport { default as SignNoLeftTurn } from './icons/sign-no-left-turn';\r\nexport { default as SignNoParkingFill } from './icons/sign-no-parking-fill';\r\nexport { default as SignNoParking } from './icons/sign-no-parking';\r\nexport { default as SignNoRightTurnFill } from './icons/sign-no-right-turn-fill';\r\nexport { default as SignNoRightTurn } from './icons/sign-no-right-turn';\r\nexport { default as SignRailroadFill } from './icons/sign-railroad-fill';\r\nexport { default as SignRailroad } from './icons/sign-railroad';\r\nexport { default as SignStopFill } from './icons/sign-stop-fill';\r\nexport { default as SignStopLightsFill } from './icons/sign-stop-lights-fill';\r\nexport { default as SignStopLights } from './icons/sign-stop-lights';\r\nexport { default as SignStop } from './icons/sign-stop';\r\nexport { default as SignTurnLeftFill } from './icons/sign-turn-left-fill';\r\nexport { default as SignTurnLeft } from './icons/sign-turn-left';\r\nexport { default as SignTurnRightFill } from './icons/sign-turn-right-fill';\r\nexport { default as SignTurnRight } from './icons/sign-turn-right';\r\nexport { default as SignTurnSlightLeftFill } from './icons/sign-turn-slight-left-fill';\r\nexport { default as SignTurnSlightLeft } from './icons/sign-turn-slight-left';\r\nexport { default as SignTurnSlightRightFill } from './icons/sign-turn-slight-right-fill';\r\nexport { default as SignTurnSlightRight } from './icons/sign-turn-slight-right';\r\nexport { default as SignYieldFill } from './icons/sign-yield-fill';\r\nexport { default as SignYield } from './icons/sign-yield';\r\nexport { default as Signal } from './icons/signal';\r\nexport { default as Signpost2Fill } from './icons/signpost-2-fill';\r\nexport { default as Signpost2 } from './icons/signpost-2';\r\nexport { default as SignpostFill } from './icons/signpost-fill';\r\nexport { default as SignpostSplitFill } from './icons/signpost-split-fill';\r\nexport { default as SignpostSplit } from './icons/signpost-split';\r\nexport { default as Signpost } from './icons/signpost';\r\nexport { default as SimFill } from './icons/sim-fill';\r\nexport { default as SimSlashFill } from './icons/sim-slash-fill';\r\nexport { default as SimSlash } from './icons/sim-slash';\r\nexport { default as Sim } from './icons/sim';\r\nexport { default as SinaWeibo } from './icons/sina-weibo';\r\nexport { default as SkipBackwardBtnFill } from './icons/skip-backward-btn-fill';\r\nexport { default as SkipBackwardBtn } from './icons/skip-backward-btn';\r\nexport { default as SkipBackwardCircleFill } from './icons/skip-backward-circle-fill';\r\nexport { default as SkipBackwardCircle } from './icons/skip-backward-circle';\r\nexport { default as SkipBackwardFill } from './icons/skip-backward-fill';\r\nexport { default as SkipBackward } from './icons/skip-backward';\r\nexport { default as SkipEndBtnFill } from './icons/skip-end-btn-fill';\r\nexport { default as SkipEndBtn } from './icons/skip-end-btn';\r\nexport { default as SkipEndCircleFill } from './icons/skip-end-circle-fill';\r\nexport { default as SkipEndCircle } from './icons/skip-end-circle';\r\nexport { default as SkipEndFill } from './icons/skip-end-fill';\r\nexport { default as SkipEnd } from './icons/skip-end';\r\nexport { default as SkipForwardBtnFill } from './icons/skip-forward-btn-fill';\r\nexport { default as SkipForwardBtn } from './icons/skip-forward-btn';\r\nexport { default as SkipForwardCircleFill } from './icons/skip-forward-circle-fill';\r\nexport { default as SkipForwardCircle } from './icons/skip-forward-circle';\r\nexport { default as SkipForwardFill } from './icons/skip-forward-fill';\r\nexport { default as SkipForward } from './icons/skip-forward';\r\nexport { default as SkipStartBtnFill } from './icons/skip-start-btn-fill';\r\nexport { default as SkipStartBtn } from './icons/skip-start-btn';\r\nexport { default as SkipStartCircleFill } from './icons/skip-start-circle-fill';\r\nexport { default as SkipStartCircle } from './icons/skip-start-circle';\r\nexport { default as SkipStartFill } from './icons/skip-start-fill';\r\nexport { default as SkipStart } from './icons/skip-start';\r\nexport { default as Skype } from './icons/skype';\r\nexport { default as Slack } from './icons/slack';\r\nexport { default as SlashCircleFill } from './icons/slash-circle-fill';\r\nexport { default as SlashCircle } from './icons/slash-circle';\r\nexport { default as SlashLg } from './icons/slash-lg';\r\nexport { default as SlashSquareFill } from './icons/slash-square-fill';\r\nexport { default as SlashSquare } from './icons/slash-square';\r\nexport { default as Slash } from './icons/slash';\r\nexport { default as Sliders } from './icons/sliders';\r\nexport { default as Sliders2Vertical } from './icons/sliders2-vertical';\r\nexport { default as Sliders2 } from './icons/sliders2';\r\nexport { default as Smartwatch } from './icons/smartwatch';\r\nexport { default as Snapchat } from './icons/snapchat';\r\nexport { default as Snow } from './icons/snow';\r\nexport { default as Snow2 } from './icons/snow2';\r\nexport { default as Snow3 } from './icons/snow3';\r\nexport { default as SortAlphaDownAlt } from './icons/sort-alpha-down-alt';\r\nexport { default as SortAlphaDown } from './icons/sort-alpha-down';\r\nexport { default as SortAlphaUpAlt } from './icons/sort-alpha-up-alt';\r\nexport { default as SortAlphaUp } from './icons/sort-alpha-up';\r\nexport { default as SortDownAlt } from './icons/sort-down-alt';\r\nexport { default as SortDown } from './icons/sort-down';\r\nexport { default as SortNumericDownAlt } from './icons/sort-numeric-down-alt';\r\nexport { default as SortNumericDown } from './icons/sort-numeric-down';\r\nexport { default as SortNumericUpAlt } from './icons/sort-numeric-up-alt';\r\nexport { default as SortNumericUp } from './icons/sort-numeric-up';\r\nexport { default as SortUpAlt } from './icons/sort-up-alt';\r\nexport { default as SortUp } from './icons/sort-up';\r\nexport { default as Soundwave } from './icons/soundwave';\r\nexport { default as Sourceforge } from './icons/sourceforge';\r\nexport { default as SpeakerFill } from './icons/speaker-fill';\r\nexport { default as Speaker } from './icons/speaker';\r\nexport { default as Speedometer } from './icons/speedometer';\r\nexport { default as Speedometer2 } from './icons/speedometer2';\r\nexport { default as Spellcheck } from './icons/spellcheck';\r\nexport { default as Spotify } from './icons/spotify';\r\nexport { default as SquareFill } from './icons/square-fill';\r\nexport { default as SquareHalf } from './icons/square-half';\r\nexport { default as Square } from './icons/square';\r\nexport { default as StackOverflow } from './icons/stack-overflow';\r\nexport { default as Stack } from './icons/stack';\r\nexport { default as StarFill } from './icons/star-fill';\r\nexport { default as StarHalf } from './icons/star-half';\r\nexport { default as Star } from './icons/star';\r\nexport { default as Stars } from './icons/stars';\r\nexport { default as Steam } from './icons/steam';\r\nexport { default as StickiesFill } from './icons/stickies-fill';\r\nexport { default as Stickies } from './icons/stickies';\r\nexport { default as StickyFill } from './icons/sticky-fill';\r\nexport { default as Sticky } from './icons/sticky';\r\nexport { default as StopBtnFill } from './icons/stop-btn-fill';\r\nexport { default as StopBtn } from './icons/stop-btn';\r\nexport { default as StopCircleFill } from './icons/stop-circle-fill';\r\nexport { default as StopCircle } from './icons/stop-circle';\r\nexport { default as StopFill } from './icons/stop-fill';\r\nexport { default as Stop } from './icons/stop';\r\nexport { default as StoplightsFill } from './icons/stoplights-fill';\r\nexport { default as Stoplights } from './icons/stoplights';\r\nexport { default as StopwatchFill } from './icons/stopwatch-fill';\r\nexport { default as Stopwatch } from './icons/stopwatch';\r\nexport { default as Strava } from './icons/strava';\r\nexport { default as Stripe } from './icons/stripe';\r\nexport { default as Subscript } from './icons/subscript';\r\nexport { default as Substack } from './icons/substack';\r\nexport { default as Subtract } from './icons/subtract';\r\nexport { default as SuitClubFill } from './icons/suit-club-fill';\r\nexport { default as SuitClub } from './icons/suit-club';\r\nexport { default as SuitDiamondFill } from './icons/suit-diamond-fill';\r\nexport { default as SuitDiamond } from './icons/suit-diamond';\r\nexport { default as SuitHeartFill } from './icons/suit-heart-fill';\r\nexport { default as SuitHeart } from './icons/suit-heart';\r\nexport { default as SuitSpadeFill } from './icons/suit-spade-fill';\r\nexport { default as SuitSpade } from './icons/suit-spade';\r\nexport { default as SuitcaseFill } from './icons/suitcase-fill';\r\nexport { default as SuitcaseLgFill } from './icons/suitcase-lg-fill';\r\nexport { default as SuitcaseLg } from './icons/suitcase-lg';\r\nexport { default as Suitcase } from './icons/suitcase';\r\nexport { default as Suitcase2Fill } from './icons/suitcase2-fill';\r\nexport { default as Suitcase2 } from './icons/suitcase2';\r\nexport { default as SunFill } from './icons/sun-fill';\r\nexport { default as Sun } from './icons/sun';\r\nexport { default as Sunglasses } from './icons/sunglasses';\r\nexport { default as SunriseFill } from './icons/sunrise-fill';\r\nexport { default as Sunrise } from './icons/sunrise';\r\nexport { default as SunsetFill } from './icons/sunset-fill';\r\nexport { default as Sunset } from './icons/sunset';\r\nexport { default as Superscript } from './icons/superscript';\r\nexport { default as SymmetryHorizontal } from './icons/symmetry-horizontal';\r\nexport { default as SymmetryVertical } from './icons/symmetry-vertical';\r\nexport { default as Table } from './icons/table';\r\nexport { default as TabletFill } from './icons/tablet-fill';\r\nexport { default as TabletLandscapeFill } from './icons/tablet-landscape-fill';\r\nexport { default as TabletLandscape } from './icons/tablet-landscape';\r\nexport { default as Tablet } from './icons/tablet';\r\nexport { default as TagFill } from './icons/tag-fill';\r\nexport { default as Tag } from './icons/tag';\r\nexport { default as TagsFill } from './icons/tags-fill';\r\nexport { default as Tags } from './icons/tags';\r\nexport { default as TaxiFrontFill } from './icons/taxi-front-fill';\r\nexport { default as TaxiFront } from './icons/taxi-front';\r\nexport { default as Telegram } from './icons/telegram';\r\nexport { default as TelephoneFill } from './icons/telephone-fill';\r\nexport { default as TelephoneForwardFill } from './icons/telephone-forward-fill';\r\nexport { default as TelephoneForward } from './icons/telephone-forward';\r\nexport { default as TelephoneInboundFill } from './icons/telephone-inbound-fill';\r\nexport { default as TelephoneInbound } from './icons/telephone-inbound';\r\nexport { default as TelephoneMinusFill } from './icons/telephone-minus-fill';\r\nexport { default as TelephoneMinus } from './icons/telephone-minus';\r\nexport { default as TelephoneOutboundFill } from './icons/telephone-outbound-fill';\r\nexport { default as TelephoneOutbound } from './icons/telephone-outbound';\r\nexport { default as TelephonePlusFill } from './icons/telephone-plus-fill';\r\nexport { default as TelephonePlus } from './icons/telephone-plus';\r\nexport { default as TelephoneXFill } from './icons/telephone-x-fill';\r\nexport { default as TelephoneX } from './icons/telephone-x';\r\nexport { default as Telephone } from './icons/telephone';\r\nexport { default as TencentQq } from './icons/tencent-qq';\r\nexport { default as TerminalDash } from './icons/terminal-dash';\r\nexport { default as TerminalFill } from './icons/terminal-fill';\r\nexport { default as TerminalPlus } from './icons/terminal-plus';\r\nexport { default as TerminalSplit } from './icons/terminal-split';\r\nexport { default as TerminalX } from './icons/terminal-x';\r\nexport { default as Terminal } from './icons/terminal';\r\nexport { default as TextCenter } from './icons/text-center';\r\nexport { default as TextIndentLeft } from './icons/text-indent-left';\r\nexport { default as TextIndentRight } from './icons/text-indent-right';\r\nexport { default as TextLeft } from './icons/text-left';\r\nexport { default as TextParagraph } from './icons/text-paragraph';\r\nexport { default as TextRight } from './icons/text-right';\r\nexport { default as TextWrap } from './icons/text-wrap';\r\nexport { default as TextareaResize } from './icons/textarea-resize';\r\nexport { default as TextareaT } from './icons/textarea-t';\r\nexport { default as Textarea } from './icons/textarea';\r\nexport { default as ThermometerHalf } from './icons/thermometer-half';\r\nexport { default as ThermometerHigh } from './icons/thermometer-high';\r\nexport { default as ThermometerLow } from './icons/thermometer-low';\r\nexport { default as ThermometerSnow } from './icons/thermometer-snow';\r\nexport { default as ThermometerSun } from './icons/thermometer-sun';\r\nexport { default as Thermometer } from './icons/thermometer';\r\nexport { default as ThreadsFill } from './icons/threads-fill';\r\nexport { default as Threads } from './icons/threads';\r\nexport { default as ThreeDotsVertical } from './icons/three-dots-vertical';\r\nexport { default as ThreeDots } from './icons/three-dots';\r\nexport { default as ThunderboltFill } from './icons/thunderbolt-fill';\r\nexport { default as Thunderbolt } from './icons/thunderbolt';\r\nexport { default as TicketDetailedFill } from './icons/ticket-detailed-fill';\r\nexport { default as TicketDetailed } from './icons/ticket-detailed';\r\nexport { default as TicketFill } from './icons/ticket-fill';\r\nexport { default as TicketPerforatedFill } from './icons/ticket-perforated-fill';\r\nexport { default as TicketPerforated } from './icons/ticket-perforated';\r\nexport { default as Ticket } from './icons/ticket';\r\nexport { default as Tiktok } from './icons/tiktok';\r\nexport { default as ToggleOff } from './icons/toggle-off';\r\nexport { default as ToggleOn } from './icons/toggle-on';\r\nexport { default as Toggle2Off } from './icons/toggle2-off';\r\nexport { default as Toggle2On } from './icons/toggle2-on';\r\nexport { default as Toggles } from './icons/toggles';\r\nexport { default as Toggles2 } from './icons/toggles2';\r\nexport { default as Tools } from './icons/tools';\r\nexport { default as Tornado } from './icons/tornado';\r\nexport { default as TrainFreightFrontFill } from './icons/train-freight-front-fill';\r\nexport { default as TrainFreightFront } from './icons/train-freight-front';\r\nexport { default as TrainFrontFill } from './icons/train-front-fill';\r\nexport { default as TrainFront } from './icons/train-front';\r\nexport { default as TrainLightrailFrontFill } from './icons/train-lightrail-front-fill';\r\nexport { default as TrainLightrailFront } from './icons/train-lightrail-front';\r\nexport { default as Translate } from './icons/translate';\r\nexport { default as Transparency } from './icons/transparency';\r\nexport { default as TrashFill } from './icons/trash-fill';\r\nexport { default as Trash } from './icons/trash';\r\nexport { default as Trash2Fill } from './icons/trash2-fill';\r\nexport { default as Trash2 } from './icons/trash2';\r\nexport { default as Trash3Fill } from './icons/trash3-fill';\r\nexport { default as Trash3 } from './icons/trash3';\r\nexport { default as TreeFill } from './icons/tree-fill';\r\nexport { default as Tree } from './icons/tree';\r\nexport { default as Trello } from './icons/trello';\r\nexport { default as TriangleFill } from './icons/triangle-fill';\r\nexport { default as TriangleHalf } from './icons/triangle-half';\r\nexport { default as Triangle } from './icons/triangle';\r\nexport { default as TrophyFill } from './icons/trophy-fill';\r\nexport { default as Trophy } from './icons/trophy';\r\nexport { default as TropicalStorm } from './icons/tropical-storm';\r\nexport { default as TruckFlatbed } from './icons/truck-flatbed';\r\nexport { default as TruckFrontFill } from './icons/truck-front-fill';\r\nexport { default as TruckFront } from './icons/truck-front';\r\nexport { default as Truck } from './icons/truck';\r\nexport { default as Tsunami } from './icons/tsunami';\r\nexport { default as Tux } from './icons/tux';\r\nexport { default as TvFill } from './icons/tv-fill';\r\nexport { default as Tv } from './icons/tv';\r\nexport { default as Twitch } from './icons/twitch';\r\nexport { default as TwitterX } from './icons/twitter-x';\r\nexport { default as Twitter } from './icons/twitter';\r\nexport { default as TypeBold } from './icons/type-bold';\r\nexport { default as TypeH1 } from './icons/type-h1';\r\nexport { default as TypeH2 } from './icons/type-h2';\r\nexport { default as TypeH3 } from './icons/type-h3';\r\nexport { default as TypeH4 } from './icons/type-h4';\r\nexport { default as TypeH5 } from './icons/type-h5';\r\nexport { default as TypeH6 } from './icons/type-h6';\r\nexport { default as TypeItalic } from './icons/type-italic';\r\nexport { default as TypeStrikethrough } from './icons/type-strikethrough';\r\nexport { default as TypeUnderline } from './icons/type-underline';\r\nexport { default as Type } from './icons/type';\r\nexport { default as Typescript } from './icons/typescript';\r\nexport { default as Ubuntu } from './icons/ubuntu';\r\nexport { default as UiChecksGrid } from './icons/ui-checks-grid';\r\nexport { default as UiChecks } from './icons/ui-checks';\r\nexport { default as UiRadiosGrid } from './icons/ui-radios-grid';\r\nexport { default as UiRadios } from './icons/ui-radios';\r\nexport { default as UmbrellaFill } from './icons/umbrella-fill';\r\nexport { default as Umbrella } from './icons/umbrella';\r\nexport { default as Unindent } from './icons/unindent';\r\nexport { default as Union } from './icons/union';\r\nexport { default as Unity } from './icons/unity';\r\nexport { default as UniversalAccessCircle } from './icons/universal-access-circle';\r\nexport { default as UniversalAccess } from './icons/universal-access';\r\nexport { default as UnlockFill } from './icons/unlock-fill';\r\nexport { default as Unlock } from './icons/unlock';\r\nexport { default as Unlock2Fill } from './icons/unlock2-fill';\r\nexport { default as Unlock2 } from './icons/unlock2';\r\nexport { default as UpcScan } from './icons/upc-scan';\r\nexport { default as Upc } from './icons/upc';\r\nexport { default as Upload } from './icons/upload';\r\nexport { default as UsbCFill } from './icons/usb-c-fill';\r\nexport { default as UsbC } from './icons/usb-c';\r\nexport { default as UsbDriveFill } from './icons/usb-drive-fill';\r\nexport { default as UsbDrive } from './icons/usb-drive';\r\nexport { default as UsbFill } from './icons/usb-fill';\r\nexport { default as UsbMicroFill } from './icons/usb-micro-fill';\r\nexport { default as UsbMicro } from './icons/usb-micro';\r\nexport { default as UsbMiniFill } from './icons/usb-mini-fill';\r\nexport { default as UsbMini } from './icons/usb-mini';\r\nexport { default as UsbPlugFill } from './icons/usb-plug-fill';\r\nexport { default as UsbPlug } from './icons/usb-plug';\r\nexport { default as UsbSymbol } from './icons/usb-symbol';\r\nexport { default as Usb } from './icons/usb';\r\nexport { default as Valentine } from './icons/valentine';\r\nexport { default as Valentine2 } from './icons/valentine2';\r\nexport { default as VectorPen } from './icons/vector-pen';\r\nexport { default as ViewList } from './icons/view-list';\r\nexport { default as ViewStacked } from './icons/view-stacked';\r\nexport { default as Vignette } from './icons/vignette';\r\nexport { default as Vimeo } from './icons/vimeo';\r\nexport { default as VinylFill } from './icons/vinyl-fill';\r\nexport { default as Vinyl } from './icons/vinyl';\r\nexport { default as Virus } from './icons/virus';\r\nexport { default as Virus2 } from './icons/virus2';\r\nexport { default as Voicemail } from './icons/voicemail';\r\nexport { default as VolumeDownFill } from './icons/volume-down-fill';\r\nexport { default as VolumeDown } from './icons/volume-down';\r\nexport { default as VolumeMuteFill } from './icons/volume-mute-fill';\r\nexport { default as VolumeMute } from './icons/volume-mute';\r\nexport { default as VolumeOffFill } from './icons/volume-off-fill';\r\nexport { default as VolumeOff } from './icons/volume-off';\r\nexport { default as VolumeUpFill } from './icons/volume-up-fill';\r\nexport { default as VolumeUp } from './icons/volume-up';\r\nexport { default as Vr } from './icons/vr';\r\nexport { default as WalletFill } from './icons/wallet-fill';\r\nexport { default as Wallet } from './icons/wallet';\r\nexport { default as Wallet2 } from './icons/wallet2';\r\nexport { default as Watch } from './icons/watch';\r\nexport { default as Water } from './icons/water';\r\nexport { default as WebcamFill } from './icons/webcam-fill';\r\nexport { default as Webcam } from './icons/webcam';\r\nexport { default as Wechat } from './icons/wechat';\r\nexport { default as Whatsapp } from './icons/whatsapp';\r\nexport { default as Wifi1 } from './icons/wifi-1';\r\nexport { default as Wifi2 } from './icons/wifi-2';\r\nexport { default as WifiOff } from './icons/wifi-off';\r\nexport { default as Wifi } from './icons/wifi';\r\nexport { default as Wikipedia } from './icons/wikipedia';\r\nexport { default as Wind } from './icons/wind';\r\nexport { default as WindowDash } from './icons/window-dash';\r\nexport { default as WindowDesktop } from './icons/window-desktop';\r\nexport { default as WindowDock } from './icons/window-dock';\r\nexport { default as WindowFullscreen } from './icons/window-fullscreen';\r\nexport { default as WindowPlus } from './icons/window-plus';\r\nexport { default as WindowSidebar } from './icons/window-sidebar';\r\nexport { default as WindowSplit } from './icons/window-split';\r\nexport { default as WindowStack } from './icons/window-stack';\r\nexport { default as WindowX } from './icons/window-x';\r\nexport { default as Window } from './icons/window';\r\nexport { default as Windows } from './icons/windows';\r\nexport { default as Wordpress } from './icons/wordpress';\r\nexport { default as WrenchAdjustableCircleFill } from './icons/wrench-adjustable-circle-fill';\r\nexport { default as WrenchAdjustableCircle } from './icons/wrench-adjustable-circle';\r\nexport { default as WrenchAdjustable } from './icons/wrench-adjustable';\r\nexport { default as Wrench } from './icons/wrench';\r\nexport { default as XCircleFill } from './icons/x-circle-fill';\r\nexport { default as XCircle } from './icons/x-circle';\r\nexport { default as XDiamondFill } from './icons/x-diamond-fill';\r\nexport { default as XDiamond } from './icons/x-diamond';\r\nexport { default as XLg } from './icons/x-lg';\r\nexport { default as XOctagonFill } from './icons/x-octagon-fill';\r\nexport { default as XOctagon } from './icons/x-octagon';\r\nexport { default as XSquareFill } from './icons/x-square-fill';\r\nexport { default as XSquare } from './icons/x-square';\r\nexport { default as X } from './icons/x';\r\nexport { default as Xbox } from './icons/xbox';\r\nexport { default as Yelp } from './icons/yelp';\r\nexport { default as YinYang } from './icons/yin-yang';\r\nexport { default as Youtube } from './icons/youtube';\r\nexport { default as ZoomIn } from './icons/zoom-in';\r\nexport { default as ZoomOut } from './icons/zoom-out';\r\n"
  }
]